Sha256: 069fe5f648011759da09aa64e33aa1f9e11610d7120fdf0ed8dccef6ff613c6a
Contents?: true
Size: 675 Bytes
Versions: 13
Compression:
Stored size: 675 Bytes
Contents
module ActionDispatch::Routing class Mapper def maestrano_routes namespace :maestrano do scope module: :rails do get '/metadata' => 'metadata#index' end namespace :rails do get '/maestrano/metadata' end namespace :auth do resources :saml, only:[] do get 'init', on: :collection post 'consume', on: :collection end end namespace :account do resources :groups, only: [:destroy] do resources :users, only: [:destroy], controller: 'group_users' end end end end end end
Version data entries
13 entries across 13 versions & 2 rubygems