gitlab-org--gitlab-foss/app/services/projects/operations/update_service.rb
Peter Leitzen b78ac977ee
Move settings operations controller from EE to CE
This commit prepares the structure for the upcoming feature error
tracking.
2019-01-06 15:13:14 +01:00

19 lines
332 B
Ruby

# frozen_string_literal: true
module Projects
module Operations
class UpdateService < BaseService
def execute
Projects::UpdateService
.new(project, current_user, project_update_params)
.execute
end
private
def project_update_params
{}
end
end
end
end