Class: ServiceDeskSettings::UpdateService

Inherits:
BaseService
  • Object
show all
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

#initialize

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

#can?

Constructor Details

This class inherits a constructor from BaseService

Instance Method Details

#executeObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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?

  # We want to know when custom email got enabled
  write_log_message = params[:custom_email_enabled].present? && !settings.custom_email_enabled?

  if settings.update(params)
    log_info if write_log_message

    ServiceResponse.success
  else
    ServiceResponse.error(message: settings.errors.full_messages.to_sentence)
  end
end