mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
44b2ee3485
* Add customizable user roles * Various fixes and improvements * Add migration for old settings and fix tootctl role management
19 lines
462 B
Ruby
19 lines
462 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CustomCssController < ApplicationController
|
|
skip_before_action :store_current_location
|
|
skip_before_action :require_functional!
|
|
skip_before_action :update_user_sign_in
|
|
skip_before_action :set_session_activity
|
|
|
|
skip_around_action :set_locale
|
|
|
|
before_action :set_cache_headers
|
|
|
|
def show
|
|
expires_in 3.minutes, public: true
|
|
request.session_options[:skip] = true
|
|
render content_type: 'text/css'
|
|
end
|
|
end
|