Sha256: 72751ea63eef1fc48dc577f82e5f8fbbad55b7e1eb9fa215ad0050493c602f8d

Contents?: true

Size: 432 Bytes

Versions: 1

Compression:

Stored size: 432 Bytes

Contents

LunarShell::Engine.routes.draw do
  namespace :satellites do
    resource :clear, only: []
    resource :exit, only: []
    resource :help, only: []
    resource :history, only: []
    resource :passwd, only: [:create] do
      post 'confirm_password'
      post 'new_password'
    end
    resource :quit, only: []
    resource :su, only: [:create]
  end
  post 'satellites/*error', to: 'satellites#error'

  root 'shells#show'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lunar_shell-0.3.0 config/routes.rb