Init version of dashboard stats.

This commit is contained in:
Martin Edenhofer 2015-09-07 01:02:15 +02:00
parent c4a2996da0
commit 3e6b8beb00

View file

@ -0,0 +1,18 @@
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
module ExtraCollection
def session( collections, assets, user )
return [collections, assets] if !user
item = StatsStore.search(
object: 'User',
o_id: user.id,
key: 'dashboard',
)
return [collections, assets] if !item
collections['StatsStore'] = [item]
[collections, assets]
end
module_function :session
end