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

24 lines
558 B

OpenProject::Application.routes.draw do
namespace 'ldap_groups' do
resources :synchronized_filters,
param: :ldap_filter_id,
except: %i(index) do
member do
# Extract groups from filter
get 'synchronize'
# Destroy warning
get 'destroy_info'
end
end
resources :synchronized_groups,
param: :ldap_group_id,
only: %i(new index create show destroy) do
member do
# Destroy warning
get 'destroy_info'
end
end
end
end