discourse/app/controllers/qunit_controller.rb
Osama Sayegh 2b9ab3a0d9
Revert "FEATURE: Introduce theme/component QUnit tests (#12517)" (#12632)
This reverts commit a53d8d3e61 and 105634435f.

Reverted because the change broke some components. Will be added back in a few days.
2021-04-07 17:45:49 +03:00

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