Class: DependencyProxy::GroupSettings::UpdateService

Inherits:
BaseContainerService show all
Defined in:
app/services/dependency_proxy/group_settings/update_service.rb

Constant Summary collapse

ALLOWED_ATTRIBUTES =
%i[enabled].freeze

Instance Attribute Summary

Attributes inherited from BaseContainerService

#container, #current_user, #group, #params, #project

Instance Method Summary collapse

Methods inherited from BaseContainerService

#group_container?, #initialize, #namespace_container?, #project_container?, #project_group

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 BaseContainerService

Instance Method Details

#executeObject



8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'app/services/dependency_proxy/group_settings/update_service.rb', line 8

def execute
  return ServiceResponse.error(message: 'Access Denied', http_status: 403) unless allowed?
  return ServiceResponse.error(message: 'Dependency proxy setting not found', http_status: 404) unless dependency_proxy_setting

  if dependency_proxy_setting.update(dependency_proxy_setting_params)
    ServiceResponse.success(payload: { dependency_proxy_setting: dependency_proxy_setting })
  else
    ServiceResponse.error(
      message: dependency_proxy_setting.errors.full_messages.to_sentence || 'Bad request',
      http_status: 400
    )
  end
end