Class: ServiceDeskSettings::UpdateService
- Inherits:
-
BaseService
- Object
- BaseService
- ServiceDeskSettings::UpdateService
- Includes:
- ServiceDesk::CustomEmails::Logger
- Defined in:
- app/services/service_desk_settings/update_service.rb
Instance Attribute Summary
Attributes inherited from BaseService
#current_user, #params, #project
Instance Method Summary collapse
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 BaseService
Instance Method Details
#execute ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'app/services/service_desk_settings/update_service.rb', line 7 def execute settings = ServiceDeskSetting.safe_find_or_create_by!(project_id: project.id) params[:project_key] = nil if params[:project_key].blank? apply_feature_flag_restrictions!( feature_flag: :issue_email_participants, field: :add_external_participants_from_cc ) # We want to know when custom email got enabled = params[:custom_email_enabled].present? && !settings.custom_email_enabled? if settings.update(params) log_info if ServiceResponse.success else ServiceResponse.error(message: settings.errors..to_sentence) end end |