Skip to content

Commit c6727a7

Browse files
author
Tony Guntharp
committed
Merge pull request #169 from mjtko/kandan-168
Wire up /me and add observation of channel creation (#168)
2 parents 0b9684c + 942ab52 commit c6727a7

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

app/models/channel_observer.rb

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
class ChannelObserver < ActiveRecord::Observer
22
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,
514
:entity => channel.attributes,
6-
:extra => {}
15+
:extra => {}
716
}
8-
9-
Kandan::Config.broadcaster.broadcast("/app/activities", broadcast_data)
17+
Kandan::Config.broadcaster.broadcast("/app/activities", data)
1018
end
1119
end

config/routes.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
end
2121

2222
get "/active_users" => "apis#active_users"
23-
23+
get "/me" => "apis#me"
24+
2425
get "/users/edit" =>"main#users_edit"
2526

2627
namespace :admin do

0 commit comments

Comments
 (0)