mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
11 lines
311 B
Ruby
11 lines
311 B
Ruby
# teams
|
|
get '/teams', to: 'teams/teams#index'
|
|
|
|
namespace :teams do
|
|
get '/new', to: 'teams#new'
|
|
get '/:team_id/details', to: 'teams#details'
|
|
get '/current_team', to: 'teams#current_team'
|
|
post '/', to: 'teams#create'
|
|
post '/change_team', to: 'teams#change_team'
|
|
post '/update', to: 'teams#update'
|
|
end
|