scinote-web/config/routes/teams.rb
2017-10-04 09:16:17 +02:00

11 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