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