mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 13:16:09 +10:00
11 lines
297 B
Ruby
11 lines
297 B
Ruby
class Groups::LdapsController < Groups::ApplicationController
|
|
before_action :group
|
|
before_action :authorize_admin_group!
|
|
|
|
def reset_access
|
|
LdapGroupResetService.new.execute(group, current_user)
|
|
|
|
redirect_to group_group_members_path(@group), notice: 'Access reset complete'
|
|
end
|
|
end
|