mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
13 lines
346 B
Ruby
13 lines
346 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class Taskbar::Init
|
|
include ::Mixin::HasBackends
|
|
|
|
def self.run(current_user)
|
|
object_ids = current_user.taskbars.to_object_ids
|
|
|
|
backends.each_with_object({ assets: {} }) do |elem, memo|
|
|
elem.new(current_user:, object_ids:).data(memo)
|
|
end
|
|
end
|
|
end
|