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

Version Path
maestrano-rails-0.11.0 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.10.0 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.9.5 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.9.4 lib/maestrano/rails/routing/routes.rb
maestrano-rails-test-0.9.4 lib/maestrano/rails/routing/routes.rb
maestrano-rails-test-0.9.3 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.9.3 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.9.2 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.9.1 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.9.0 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.8.0 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.7.0 lib/maestrano/rails/routing/routes.rb
maestrano-rails-0.6.0 lib/maestrano/rails/routing/routes.rb