Sha256: 1d62ea2a92a4ed2b768047d22a83862670db5aa0d6fb06f848e068b130f6d496

Contents?: true

Size: 746 Bytes

Versions: 3

Compression:

Stored size: 746 Bytes

Contents

LatoCore::Engine.routes.draw do
  
  root 'back/back#home'

  # Authentication
  get 'login', to: 'back/authentication#login', as: 'login'
  post 'exec_login', to: 'back/authentication#exec_login', as: 'exec_login'
  delete 'exec_logout', to: 'back/authentication#exec_logout', as: 'exec_logout'

  # Password recovery
  get 'password_forget', to: 'back/authentication#password_forget', as: 'password_forget'
  post 'password_recover', to: 'back/authentication#password_recover', as: 'password_recover'
  get 'password_edit/:token', to: 'back/authentication#password_edit', as: 'password_edit'
  post 'password_update', to: 'back/authentication#password_update', as: 'password_update'

  # Superusers
  resources :superusers, module: 'back'

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lato_core-1.1.5 config/routes.rb
lato_core-1.1.4 config/routes.rb
lato_core-1.1.3 config/routes.rb