File tree 2 files changed +15
-6
lines changed
2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
class ChannelObserver < ActiveRecord ::Observer
2
2
def after_destroy ( channel )
3
- broadcast_data = {
4
- :event => "channel#delete" ,
3
+ broadcast ( 'delete' , channel )
4
+ end
5
+
6
+ def after_create ( channel )
7
+ broadcast ( 'create' , channel )
8
+ end
9
+
10
+ private
11
+ def broadcast ( event , channel )
12
+ data = {
13
+ :event => "channel#" << event ,
5
14
:entity => channel . attributes ,
6
- :extra => { }
15
+ :extra => { }
7
16
}
8
-
9
- Kandan ::Config . broadcaster . broadcast ( "/app/activities" , broadcast_data )
17
+ Kandan ::Config . broadcaster . broadcast ( "/app/activities" , data )
10
18
end
11
19
end
Original file line number Diff line number Diff line change 20
20
end
21
21
22
22
get "/active_users" => "apis#active_users"
23
-
23
+ get "/me" => "apis#me"
24
+
24
25
get "/users/edit" => "main#users_edit"
25
26
26
27
namespace :admin do
You can’t perform that action at this time.
0 commit comments