Class: Boards::Lists::CreateService
- Inherits:
-
BaseService
- Object
- BaseService
- BaseService
- Boards::Lists::CreateService
- Includes:
- Gitlab::Utils::StrongMemoize
- Defined in:
- app/services/boards/lists/create_service.rb
Instance Attribute Summary
Attributes inherited from BaseService
#current_user, #params, #parent
Attributes inherited from BaseService
#current_user, #params, #project
Instance Method Summary collapse
Methods included from Gitlab::Utils::StrongMemoize
#clear_memoization, #strong_memoize, #strong_memoized?
Methods inherited from BaseService
Methods inherited from BaseService
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
Constructor Details
This class inherits a constructor from Boards::BaseService
Instance Method Details
#execute(board) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'app/services/boards/lists/create_service.rb', line 8 def execute(board) List.transaction do case type when :backlog create_backlog(board) else target = target(board) position = next_position(board) create_list(board, type, target, position) end end end |