mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
10 lines
223 B
Ruby
10 lines
223 B
Ruby
class QunitController < ApplicationController
|
|
skip_before_action :check_xhr, :preload_json
|
|
layout false
|
|
|
|
# only used in test / dev
|
|
def index
|
|
raise Discourse::InvalidAccess.new if Rails.env.production?
|
|
end
|
|
end
|