module BlobSignedIdConcern extend ActiveSupport::Concern included do # We override signed_id to add `expires_in` option to generated hash. # This is a measure to ensure that we never under any circumstance # expose permanent attachment url def signed_id ActiveStorage.verifier.generate(id, purpose: :blob_id, expires_in: ActiveStorage::Service.url_expires_in) end end end