trabajo-afectivo/lib/session_helper/collection_dashboard.rb
2022-01-01 14:38:12 +01:00

20 lines
442 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
module SessionHelper::CollectionDashboard
module_function
def session(collections, assets, user)
return [collections, assets] if !user
item = StatsStore.find_by(
stats_storable: user,
key: 'dashboard',
)
return [collections, assets] if !item
collections['StatsStore'] = [item]
[collections, assets]
end
end