mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
2b9ab3a0d9
This reverts commita53d8d3e61
and105634435f
. Reverted because the change broke some components. Will be added back in a few days.
12 lines
286 B
Ruby
12 lines
286 B
Ruby
# frozen_string_literal: true
|
|
|
|
class QunitController < ApplicationController
|
|
skip_before_action :check_xhr, :preload_json, :redirect_to_login_if_required
|
|
layout false
|
|
|
|
# only used in test / dev
|
|
def index
|
|
raise Discourse::InvalidAccess.new if Rails.env.production?
|
|
end
|
|
end
|