mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:21:42 +00:00
11 lines
203 B
Ruby
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
|