mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 17:51:13 +08:00
10 lines
263 B
Ruby
10 lines
263 B
Ruby
# teams
|
|
get '/teams', to: 'teams/teams#index'
|
|
|
|
namespace :teams do
|
|
get '/new', to: 'teams#new'
|
|
get '/:team_id/details', to: 'teams#details'
|
|
post '/', to: 'teams#create'
|
|
post '/change_team', to: 'teams#change_team'
|
|
post '/update', to: 'teams#update'
|
|
end
|