2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-10-30 19:46:48 -04:00
|
|
|
class OfflineController < ApplicationController
|
|
|
|
|
layout false
|
2017-10-31 15:44:16 +11:00
|
|
|
skip_before_action :preload_json, :check_xhr, :redirect_to_login_if_required
|
2017-10-30 19:46:48 -04:00
|
|
|
|
|
|
|
|
def index
|
|
|
|
|
render :offline, content_type: 'text/html'
|
|
|
|
|
end
|
|
|
|
|
end
|