Sha256: ff956c449c628e7f8d00466ae37d90b265589c5cfd0b65f238832f794d3a8a90
Contents?: true
Size: 576 Bytes
Versions: 47
Compression:
Stored size: 576 Bytes
Contents
ZuoraConnect::Engine.routes.draw do get '/health' => 'static#health' post '/initialize_app' => 'static#initialize_app' if ENV['PROVISION_USER'].present? && ENV['PROVISION_SECRET'].present? post '/provision' => 'static#provision' get '/instance/:id/user' => 'static#instance_user' end namespace :api do namespace :v1 do resources :app_instance, :only => [:index], defaults: {format: :json} do match "drop", via: [:get, :post], on: :collection match "cache_bust", via: [:get, :post], on: :collection end end end end
Version data entries
47 entries across 47 versions & 1 rubygems