Class: Boards::Lists::BaseUpdateService

Inherits:
BaseService show all
Extended by:
Gitlab::Utils::Override
Defined in:
app/services/boards/lists/base_update_service.rb

Direct Known Subclasses

UpdateService

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::Override

extended, extensions, included, method_added, override, prepended, queue_verification, verify!

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



8
9
10
11
12
13
14
15
16
# File 'app/services/boards/lists/base_update_service.rb', line 8

def execute(list)
  if execute_by_params(list)
    success(list: list)
  else
    message = list.errors.empty? ? 'The update was not successful.' : list.errors.messages

    error(message, { list: list })
  end
end