Files
2025-09-09 11:20:31 +02:00

23 lines
470 B
Ruby

Rails.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 do
member do
get "destroy_info"
end
end
end
end