Skip to content

Instantly share code, notes, and snippets.

@diegoeche
Created March 3, 2011 16:09
Show Gist options
  • Save diegoeche/853007 to your computer and use it in GitHub Desktop.
Save diegoeche/853007 to your computer and use it in GitHub Desktop.
def create
@post = @huddle.posts.build(params[:post])
@post.user = current_user
link = @huddle.id.to_s
if @post.save
puts Pusher[link].trigger('postReceived', @post)
end
respond_with @post
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment