houdini/app/controllers/static_controller.rb

24 lines
518 B
Ruby

# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
class StaticController < ApplicationController
layout 'layouts/static'
def terms_and_privacy
@theme = 'minimal'
end
def ccs
begin
Houdini.ccs.retrieve_ccs do |ccs|
if ccs.is_a? String
redirect_to ccs
else
send_data(ccs, type: 'application/gzip')
end
end
rescue => e
render body: nil, status: 500
end
end
end