Skip to content
Snippets Groups Projects
Commit 478b3d64 authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre
Browse files

Remove Boards::BaseService

parent e171c1d8
No related branches found
No related tags found
1 merge request!6727Refactoring Issues Board
module Boards
class BaseService < ::BaseService
end
end
module Boards
class CreateService < Boards::BaseService
class CreateService < BaseService
def execute
if project.boards.empty?
create_board!
Loading
Loading
module Boards
module Issues
class CreateService < Boards::BaseService
class CreateService < BaseService
def execute
create_issue(params.merge(label_ids: [list.label_id]))
end
Loading
Loading
module Boards
module Issues
class ListService < Boards::BaseService
class ListService < BaseService
def execute
issues = IssuesFinder.new(current_user, filter_params).execute
issues = without_board_labels(issues) unless list.movable?
Loading
Loading
module Boards
module Issues
class MoveService < Boards::BaseService
class MoveService < BaseService
def execute(issue)
return false unless can?(current_user, :update_issue, issue)
return false unless valid_move?
Loading
Loading
module Boards
class ListService < Boards::BaseService
class ListService < BaseService
def execute
create_board! if project.boards.empty?
project.boards
Loading
Loading
module Boards
module Lists
class CreateService < Boards::BaseService
class CreateService < BaseService
def execute(board)
List.transaction do
label = project.labels.find(params[:label_id])
Loading
Loading
module Boards
module Lists
class DestroyService < Boards::BaseService
class DestroyService < BaseService
def execute(list)
return false unless list.destroyable?
 
Loading
Loading
module Boards
module Lists
class GenerateService < Boards::BaseService
class GenerateService < BaseService
def execute(board)
return false unless board.lists.movable.empty?
 
Loading
Loading
module Boards
module Lists
class ListService < Boards::BaseService
class ListService < BaseService
def execute(board)
board.lists
end
Loading
Loading
module Boards
module Lists
class MoveService < Boards::BaseService
class MoveService < BaseService
def execute(list)
@board = list.board
@old_position = list.position
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment