5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-28 11:26:07 +00:00
panel/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