Retrospring/app/controllers/moderation_controller.rb

9 lines
224 B
Ruby

class ModerationController < ApplicationController
before_action :authenticate_user!
def toggle_unmask
session[:moderation_view] = !session[:moderation_view]
redirect_back fallback_location: root_path
end
end