Class: MergeRequests::RefreshService
- Inherits:
-
BaseService
- Object
- BaseContainerService
- IssuableBaseService
- BaseService
- MergeRequests::RefreshService
- Includes:
- Gitlab::Utils::StrongMemoize
- Defined in:
- app/services/merge_requests/refresh_service.rb
Instance Attribute Summary collapse
-
#push ⇒ Object
readonly
Returns the value of attribute push.
Attributes inherited from BaseContainerService
#container, #current_user, #group, #params, #project
Instance Method Summary collapse
Methods inherited from BaseService
#cancel_review_app_jobs!, #cleanup_environments, #create_note, #deactivate_pages_deployments, #execute_external_hooks, #execute_group_mention_hooks, #execute_hooks, #handle_assignees_change, #handle_changes, #handle_reviewers_change, #hook_data, #initialize, #inspect, #merge_request_activity_counter, #source_project, #target_project
Methods included from Gitlab::Utils::Override
#extended, extensions, #included, #method_added, #override, #prepended, #queue_verification, verify!
Methods included from ErrorLogger
Methods included from AssignsMergeParams
#assign_allowed_merge_params, included
Methods inherited from BaseContainerService
#group_container?, #initialize, #namespace_container?, #project_container?, #project_group, #root_ancestor
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 MergeRequests::BaseService
Instance Attribute Details
#push ⇒ Object (readonly)
Returns the value of attribute push.
7 8 9 |
# File 'app/services/merge_requests/refresh_service.rb', line 7 def push @push end |
Instance Method Details
#execute(oldrev, newrev, ref) ⇒ Object
9 10 11 12 13 14 |
# File 'app/services/merge_requests/refresh_service.rb', line 9 def execute(oldrev, newrev, ref) @push = Gitlab::Git::Push.new(@project, oldrev, newrev, ref) return true unless @push.branch_push? refresh_merge_requests! end |