mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
18 lines
499 B
Ruby
18 lines
499 B
Ruby
# frozen_string_literal: true
|
|
|
|
# The base controller for all ActiveStorage controllers.
|
|
module ActiveStorage
|
|
class CustomBaseController < ApplicationController
|
|
include TokenAuthentication
|
|
include ActiveStorage::SetCurrent
|
|
|
|
prepend_before_action :authenticate_request!, if: -> { request.headers['Authorization'].present? }
|
|
skip_before_action :authenticate_user!, if: -> { current_user.present? }
|
|
|
|
private
|
|
|
|
def stream(_blob)
|
|
raise NotImplementedError
|
|
end
|
|
end
|
|
end
|