sutty/app/controllers/env_controller.rb
2021-02-02 18:52:54 -03:00

11 lines
203 B
Ruby

# frozen_string_literal: true
class EnvController < ActionController::Base
skip_before_action :verify_authenticity_token
def index
@site = Site.find_by_name('panel')
stale? @site
end
end