Class: Boards::BaseItemMoveService

Inherits:
BaseService show all
Defined in:
app/services/boards/base_item_move_service.rb

Direct Known Subclasses

Issues::MoveService

Constant Summary collapse

LIST_END_POSITION =
-1

Instance Attribute Summary

Attributes inherited from BaseService

#current_user, #params, #parent

Attributes inherited from BaseService

#current_user, #params, #project

Instance Method Summary collapse

Methods inherited from BaseService

#initialize

Methods inherited from BaseService

#initialize

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

#can?

Constructor Details

This class inherits a constructor from Boards::BaseService

Instance Method Details

#execute(issuable) ⇒ Object



7
8
9
10
11
12
13
14
# File 'app/services/boards/base_item_move_service.rb', line 7

def execute(issuable)
  issuable_modification_params = issuable_params(issuable)
  return if issuable_modification_params.empty?

  return unless move_single_issuable(issuable, issuable_modification_params)

  success(issuable)
end