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-04-16 11:57:33 +00:00
|
|
|
class Role < ApplicationModel
|
2013-12-26 21:51:25 +00:00
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
has_and_belongs_to_many :users, after_add: :cache_update, after_remove: :cache_update
|
|
|
|
validates :name, presence: true
|
|
|
|
activity_stream_support role: Z_ROLENAME_ADMIN
|
2015-02-25 20:52:14 +00:00
|
|
|
latest_change_support
|
|
|
|
end
|