Sha256: 21103e8e98369813de5f0ea55ff924485e8cb57ce8733a9aedb4ea98e68cafa2
Contents?: true
Size: 625 Bytes
Versions: 15
Compression:
Stored size: 625 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 post "ldap_login" => 'application#ldap_login' end
Version data entries
15 entries across 15 versions & 1 rubygems