Sha256: 6db6f9bd0b3b07baa45ccac3393b1a85a14a4e59cb965321befa8bbe4dc9e422

Contents?: true

Size: 602 Bytes

Versions: 30

Compression:

Stored size: 602 Bytes

Contents

Rails.application.routes.draw do
  devise_for :users, controllers: {
    omniauth_callbacks: 'chaltron/omniauth_callbacks',
    sessions: 'chaltron/sessions'
  }

  resources :users, controller: 'chaltron/users' do
    collection do
      get   'self_show'
      get   'self_edit'
      patch 'self_update'
    end
  end

  resources :logs, controller: 'chaltron/logs', only: [:index, :show]

  # search and create LDAP users
  get   'ldap/search'       => 'chaltron/ldap#search'
  post  'ldap/multi_new'    => 'chaltron/ldap#multi_new'
  post  'ldap/multi_create' => 'chaltron/ldap#multi_create'

end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
chaltron-0.2.11 config/routes.rb
chaltron-1.0.10 config/routes.rb
chaltron-0.2.10 config/routes.rb
chaltron-1.0.9 config/routes.rb
chaltron-1.0.8 config/routes.rb
chaltron-1.0.7 config/routes.rb
chaltron-0.2.9 config/routes.rb
chaltron-1.0.6 config/routes.rb
chaltron-1.0.5 config/routes.rb
chaltron-1.0.4 config/routes.rb
chaltron-0.2.8 config/routes.rb
chaltron-0.2.7 config/routes.rb
chaltron-1.0.3 config/routes.rb
chaltron-1.0.2 config/routes.rb
chaltron-1.0.1 config/routes.rb
chaltron-0.2.6 config/routes.rb
chaltron-1.0.0 config/routes.rb
chaltron-0.2.5 config/routes.rb
chaltron-0.2.4 config/routes.rb
chaltron-0.2.3 config/routes.rb