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/ldap_groups/config/routes.rb

18 lines
418 B

OpenProject::Application.routes.draw do
namespace 'ldap_groups' do
resources :synchronized_groups,
param: :ldap_group_id,
only: %i(new index create show destroy) do
member do
# Destroy warning
get 'destroy_info'
end
collection do
# Plugin settings update
post 'update_settings', action: 'update_settings'
end
end
end
end