5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-19 06:00:48 +00:00
panel/app/controllers/env_controller.rb

12 lines
227 B
Ruby

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