Methods
D
R
S
U
Instance Public methods
display_name()
   # File rhino/rhino/lib/rhino/resource/active_storage_extension.rb
25 def display_name
26   filename.to_s
27 end
readable_properties()
   # File rhino/rhino/lib/rhino/resource/active_storage_extension.rb
31 def readable_properties
32   super + ["signed_id"]
33 end
serializable_hash(options = nil)
   # File rhino/rhino/lib/rhino/resource/active_storage_extension.rb
36 def serializable_hash(options = nil)
37   super(options).merge("signed_id" => signed_id)
38 end
url()
   # File rhino/rhino/lib/rhino/resource/active_storage_extension.rb
17 def url
18   Rails.application.routes.url_helpers.rails_blob_url(self, only_path: false)
19 end
url_attachment()
   # File rhino/rhino/lib/rhino/resource/active_storage_extension.rb
21 def url_attachment
22   Rails.application.routes.url_helpers.rails_blob_url(self, only_path: false, disposition: :attachment)
23 end