Class: Boards::Lists::MoveService

Inherits:
BaseService show all
Defined in:
app/services/boards/lists/move_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 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(list) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'app/services/boards/lists/move_service.rb', line 6

def execute(list)
  @board = list.board
  @old_position = list.position
  @new_position = params[:position]

  return false unless list.movable?
  return false unless valid_move?

  list.with_lock do
    reorder_intermediate_lists
    update_list_position(list)
  end
end