2013-06-12 15:59:58 +00:00
|
|
|
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2012-10-18 08:10:12 +00:00
|
|
|
module ExtraCollection
|
2012-10-23 20:25:42 +00:00
|
|
|
def session( collections, user )
|
2012-10-18 08:10:12 +00:00
|
|
|
|
|
|
|
# all base stuff
|
2013-05-31 23:09:09 +00:00
|
|
|
collections['Taskbar'] = Taskbar.where( :user_id => user.id )
|
2012-10-18 08:10:12 +00:00
|
|
|
collections['Role'] = Role.all
|
|
|
|
collections['Group'] = Group.all
|
|
|
|
|
2012-11-12 09:34:22 +00:00
|
|
|
if !user.is_role('Customer')
|
|
|
|
collections['Organization'] = Organization.all
|
|
|
|
end
|
2012-10-18 08:10:12 +00:00
|
|
|
end
|
2012-10-23 20:25:42 +00:00
|
|
|
def push( collections, user )
|
2012-10-23 19:12:00 +00:00
|
|
|
|
|
|
|
# all base stuff
|
|
|
|
collections['Role'] = Role.all
|
|
|
|
collections['Group'] = Group.all
|
|
|
|
|
2012-11-12 09:34:22 +00:00
|
|
|
if !user.is_role('Customer')
|
|
|
|
collections['Organization'] = Organization.all
|
|
|
|
end
|
2012-10-23 19:12:00 +00:00
|
|
|
end
|
|
|
|
module_function :session, :push
|
2013-05-31 16:56:11 +00:00
|
|
|
end
|