OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/modules/team_planner/config/routes.rb

13 lines
516 B

OpenProject::Application.routes.draw do
scope 'projects/:project_id', as: 'project' do
resources :team_planners,
controller: 'team_planner/team_planner',
only: %i[index destroy],
as: :team_planners do
get :upsale, to: 'team_planner/team_planner#upsale', on: :collection, as: :upsale
get '/new' => 'team_planner/team_planner#show', on: :collection, as: 'new'
get '(/*state)' => 'team_planner/team_planner#show', on: :member, as: ''
end
end
end