2021-02-02 21:52:54 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class EnvController < ActionController::Base
|
|
|
|
skip_before_action :verify_authenticity_token
|
|
|
|
|
|
|
|
def index
|
|
|
|
@site = Site.find_by_name('panel')
|
2023-06-10 15:18:25 +00:00
|
|
|
|
|
|
|
stale? @site if @site
|
2021-02-02 21:52:54 +00:00
|
|
|
end
|
|
|
|
end
|