2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
class Organization < ApplicationModel
|
2014-12-31 13:56:37 +00:00
|
|
|
include Organization::Permission
|
2014-10-17 12:15:54 +00:00
|
|
|
load 'organization/assets.rb'
|
2013-08-19 06:29:49 +00:00
|
|
|
include Organization::Assets
|
|
|
|
extend Organization::Search
|
2014-01-29 23:54:34 +00:00
|
|
|
include Organization::SearchIndex
|
2013-08-19 06:29:49 +00:00
|
|
|
|
2014-08-12 19:40:56 +00:00
|
|
|
has_and_belongs_to_many :users
|
2015-04-27 13:42:53 +00:00
|
|
|
has_many :members, class_name: 'User'
|
|
|
|
validates :name, presence: true
|
2014-08-12 19:40:56 +00:00
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
activity_stream_support role: Z_ROLENAME_ADMIN
|
2013-09-29 16:40:42 +00:00
|
|
|
history_support
|
2014-01-27 22:59:41 +00:00
|
|
|
search_index_support
|
2015-02-01 12:08:11 +00:00
|
|
|
notify_clients_support
|
2015-02-25 20:52:14 +00:00
|
|
|
latest_change_support
|
2015-06-18 22:39:34 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def cache_delete
|
|
|
|
super
|
|
|
|
|
|
|
|
# delete asset caches
|
|
|
|
key = "Organization::member_ids::#{id}"
|
|
|
|
Cache.delete(key)
|
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|