Class: ProtectedBranches::UpdateService
- Inherits:
-
BaseService
- Object
- BaseService
- BaseService
- ProtectedBranches::UpdateService
- Defined in:
- app/services/protected_branches/update_service.rb
Constant Summary
Constants inherited from BaseService
BaseService::UnauthorizedError
Instance Attribute Summary
Attributes inherited from BaseService
Attributes inherited from BaseService
#current_user, #params, #project
Instance Method Summary collapse
- #authorized?(protected_branch) ⇒ Boolean
- #execute(protected_branch, skip_authorization: false) ⇒ Object
Methods inherited from BaseService
#after_execute, #initialize, #refresh_cache
Methods inherited from BaseService
Methods included from BaseServiceUtility
#deny_visibility_level, #event_service, #log_error, #log_info, #notification_service, #system_hook_service, #todo_service, #visibility_level
Methods included from Gitlab::Allowable
Constructor Details
This class inherits a constructor from ProtectedBranches::BaseService
Instance Method Details
#authorized?(protected_branch) ⇒ Boolean
20 21 22 |
# File 'app/services/protected_branches/update_service.rb', line 20 def (protected_branch) can?(current_user, :update_protected_branch, protected_branch) end |
#execute(protected_branch, skip_authorization: false) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'app/services/protected_branches/update_service.rb', line 5 def execute(protected_branch, skip_authorization: false) raise Gitlab::Access::AccessDeniedError unless || (protected_branch) old_merge_access_levels = protected_branch.merge_access_levels.map(&:clone) old_push_access_levels = protected_branch.push_access_levels.map(&:clone) if protected_branch.update(params) after_execute(protected_branch: protected_branch, old_merge_access_levels: old_merge_access_levels, old_push_access_levels: old_push_access_levels) refresh_cache end protected_branch end |