|
|
|
@ -9,6 +9,8 @@ class Api::BaseController < ApplicationController |
|
|
|
|
skip_before_action :store_current_location |
|
|
|
|
skip_before_action :check_user_permissions |
|
|
|
|
|
|
|
|
|
before_action :set_cache_headers |
|
|
|
|
|
|
|
|
|
protect_from_forgery with: :null_session |
|
|
|
|
|
|
|
|
|
rescue_from ActiveRecord::RecordInvalid, Mastodon::ValidationError do |e| |
|
|
|
@ -88,4 +90,8 @@ class Api::BaseController < ApplicationController |
|
|
|
|
def authorize_if_got_token!(*scopes) |
|
|
|
|
doorkeeper_authorize!(*scopes) if doorkeeper_token |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def set_cache_headers |
|
|
|
|
response.headers['Cache-Control'] = 'no-cache, no-store, max-age=0, must-revalidate' |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|