Class: Milestones::UpdateService
- Inherits:
-
BaseService
- Object
- BaseService
- BaseService
- Milestones::UpdateService
- Defined in:
- app/services/milestones/update_service.rb
Instance Attribute Summary
Attributes inherited from BaseService
#current_user, #params, #parent
Attributes inherited from BaseService
#current_user, #params, #project
Instance Method Summary collapse
Methods inherited from BaseService
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 Milestones::BaseService
Instance Method Details
#execute(milestone) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'app/services/milestones/update_service.rb', line 5 def execute(milestone) state = params[:state_event] case state when 'activate' Milestones::ReopenService.new(parent, current_user, {}).execute(milestone) when 'close' Milestones::CloseService.new(parent, current_user, {}).execute(milestone) end milestone.assign_attributes(params.except(:state_event)) if params.present? before_update(milestone) if milestone.changed? publish_event(milestone) if milestone.save milestone end |