new registration
This commit is contained in:
parent
84d30e13f0
commit
4532ad8c0a
6 changed files with 127 additions and 69 deletions
|
|
@ -3,7 +3,6 @@ Osem::Application.routes.draw do
|
|||
devise_for :users, :controllers => { :registrations => :registrations }, :path => 'accounts'
|
||||
|
||||
namespace :admin do
|
||||
put "/users/new" => "users#create"
|
||||
resources :users
|
||||
resources :people
|
||||
resources :conference do
|
||||
|
|
@ -11,6 +10,8 @@ Osem::Application.routes.draw do
|
|||
put "/schedule" => "schedule#update"
|
||||
get "/stats" => "stats#index"
|
||||
get "/registrations" => "registrations#show"
|
||||
get "/registrations/new" => "registrations#new"
|
||||
put "/registrations/new" => "registrations#create"
|
||||
get "/registrations/edit" => "registrations#edit"
|
||||
put "/registrations/edit" => "registrations#update"
|
||||
delete "/registrations" => "registrations#delete"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue