Class: Boards::Lists::UpdateService

Inherits:
BaseUpdateService show all
Defined in:
app/services/boards/lists/update_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 BaseUpdateService

#execute

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

#can_admin?(list) ⇒ Boolean

Returns:

  • (Boolean)


10
11
12
# File 'app/services/boards/lists/update_service.rb', line 10

def can_admin?(list)
  Ability.allowed?(current_user, :admin_issue_board_list, parent)
end

#can_read?(list) ⇒ Boolean

Returns:

  • (Boolean)


6
7
8
# File 'app/services/boards/lists/update_service.rb', line 6

def can_read?(list)
  Ability.allowed?(current_user, :read_issue_board_list, parent)
end