Class: Boards::Lists::BaseUpdateService
- Inherits:
-
BaseService
- Object
- BaseService
- BaseService
- Boards::Lists::BaseUpdateService
- Extended by:
- Gitlab::Utils::Override
- Defined in:
- app/services/boards/lists/base_update_service.rb
Direct Known Subclasses
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
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(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 = list.errors.empty? ? 'The update was not successful.' : list.errors. error(, { list: list }) end end |