mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
9 lines
212 B
Ruby
9 lines
212 B
Ruby
|
class OfflineController < ApplicationController
|
||
|
layout false
|
||
|
skip_before_filter :preload_json, :check_xhr, :redirect_to_login_if_required
|
||
|
|
||
|
def index
|
||
|
render :offline, content_type: 'text/html'
|
||
|
end
|
||
|
end
|