Class: Packages::Maven::CreatePackageService

Inherits:
CreatePackageService show all
Defined in:
app/services/packages/maven/create_package_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



5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'app/services/packages/maven/create_package_service.rb', line 5

def execute
  app_group, _, app_name = params[:name].rpartition('/')
  app_group.tr!('/', '.')

  create_package!(:maven,
    maven_metadatum_attributes: {
      path: params[:path],
      app_group: app_group,
      app_name: app_name,
      app_version: params[:version]
    }
  )
end