Send notify after organisation has changed.

This commit is contained in:
Martin Edenhofer 2014-08-12 21:40:56 +02:00
parent dae73e16b8
commit 36c5c5f444

View file

@ -6,9 +6,12 @@ class Organization < ApplicationModel
extend Organization::Search
include Organization::SearchIndex
has_and_belongs_to_many :users
has_many :members, :class_name => 'User'
validates :name, :presence => true
has_and_belongs_to_many :users
has_many :members, :class_name => 'User'
validates :name, :presence => true
after_create :notify_clients_after_create
after_update :notify_clients_after_update
activity_stream_support :role => 'Admin'
history_support