2014-02-03 19:24:49 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-10-18 08:10:12 +00:00
|
|
|
module ExtraCollection
|
2014-08-02 21:54:54 +00:00
|
|
|
def session( collections, assets, user )
|
2012-10-18 08:10:12 +00:00
|
|
|
|
|
|
|
# all base stuff
|
2014-08-02 21:54:54 +00:00
|
|
|
collections[ Taskbar.to_app_model ] = Taskbar.where( :user_id => user.id )
|
|
|
|
assets = {}
|
|
|
|
collections[ Taskbar.to_app_model ].each {|item|
|
|
|
|
assets = item.assets(assets)
|
|
|
|
}
|
2012-10-18 08:10:12 +00:00
|
|
|
|
2014-08-02 21:54:54 +00:00
|
|
|
collections[ Role.to_app_model ] = Role.all
|
|
|
|
collections[ Role.to_app_model ].each {|item|
|
|
|
|
assets = item.assets(assets)
|
|
|
|
}
|
|
|
|
|
|
|
|
collections[ Group.to_app_model ] = Group.all
|
|
|
|
collections[ Group.to_app_model ].each {|item|
|
|
|
|
assets = item.assets(assets)
|
|
|
|
}
|
2012-11-12 09:34:22 +00:00
|
|
|
if !user.is_role('Customer')
|
2013-09-21 22:50:23 +00:00
|
|
|
collections[ Organization.to_app_model ] = Organization.all
|
2014-08-02 21:54:54 +00:00
|
|
|
collections[ Organization.to_app_model ].each {|item|
|
|
|
|
assets = item.assets(assets)
|
|
|
|
}
|
2013-07-19 14:21:44 +00:00
|
|
|
else
|
|
|
|
if user.organization_id
|
2013-09-21 22:50:23 +00:00
|
|
|
collections[ Organization.to_app_model ] = Organization.where( :id => user.organization_id )
|
2014-08-02 21:54:54 +00:00
|
|
|
collections[ Organization.to_app_model ].each {|item|
|
|
|
|
assets = item.assets(assets)
|
|
|
|
}
|
2013-07-19 14:21:44 +00:00
|
|
|
end
|
2012-11-12 09:34:22 +00:00
|
|
|
end
|
2012-10-18 08:10:12 +00:00
|
|
|
end
|
2014-08-02 21:54:54 +00:00
|
|
|
module_function :session
|
2013-05-31 16:56:11 +00:00
|
|
|
end
|