toggle_mute doesn't require a param

This commit is contained in:
Vipul A M 2013-06-14 11:08:59 +05:30
parent bd1b4d3130
commit 8298a07fd9

View file

@ -108,11 +108,11 @@ class TopicsController < ApplicationController
end
def mute
toggle_mute(true)
toggle_mute
end
def unmute
toggle_mute(false)
toggle_mute
end
def autoclose
@ -211,7 +211,7 @@ class TopicsController < ApplicationController
private
def toggle_mute(v)
def toggle_mute
@topic = Topic.where(id: params[:topic_id].to_i).first
guardian.ensure_can_see!(@topic)