discourse/app/controllers/safe_mode_controller.rb

21 lines
523 B
Ruby
Raw Normal View History

class SafeModeController < ApplicationController
layout 'no_ember'
skip_before_filter :preload_json, :check_xhr
def index
end
def enter
safe_mode = []
safe_mode << "no_custom" if params["no_customizations"] == "true"
safe_mode << "no_plugins" if params["no_plugins"] == "true"
safe_mode << "only_official" if params["only_official"] == "true"
if safe_mode.length > 0
redirect_to path("/?safe_mode=#{safe_mode.join("%2C")}")
else
2016-12-19 05:12:15 -05:00
redirect_to safe_mode_path
end
end
end