b78ac977ee
This commit prepares the structure for the upcoming feature error tracking.
19 lines
332 B
Ruby
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
|