0f6c42c5ce
Refactor code to allow multiple issue boards management for projects in CE
9 lines
157 B
Ruby
9 lines
157 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Boards
|
|
class UpdateService < Boards::BaseService
|
|
def execute(board)
|
|
board.update(params)
|
|
end
|
|
end
|
|
end
|