mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 17:51:41 +00:00
10 lines
203 B
Ruby
10 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
|