Class: Packages::MlModel::PackageForCandidateService

Inherits:
CreatePackageService show all
Defined in:
app/services/packages/ml_model/package_for_candidate_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?, #can_all?, #can_any?

Constructor Details

This class inherits a constructor from BaseService

Instance Method Details

#executeObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'app/services/packages/ml_model/package_for_candidate_service.rb', line 6

def execute
  candidate = params[:candidate]

  return unless candidate&.for_model?

  package = find_or_create_package!(
    ::Packages::Package.package_types['ml_model'],
    name: candidate.package_name,
    version: candidate.package_version
  )

  candidate.update!(package: package) if candidate.package_id != package.id

  package
end