module Commontator class SubscriptionsController < ApplicationController before_filter :get_thread before_filter :get_commontable_url # POST /1/subscribe def create raise SecurityTransgression unless @thread.can_subscribe?(@user) @thread.errors.add(:base, "You are already subscribed to this thread") \ unless @thread.subscribe(@user) respond_to do |format| format.html { redirect_to @commontable_url } format.js { render :subscribe } end end # POST /1/unsubscribe def destroy raise SecurityTransgression unless @thread.can_subscribe?(@user) @thread.errors.add(:base, "You are not subscribed to this thread") \ unless @thread.unsubscribe(@user) respond_to do |format| format.html { redirect_to @commontable_url } format.js { render :subscribe } end end end end