mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
12 lines
246 B
Ruby
12 lines
246 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ShareableLinksSerializer < ActiveModel::Serializer
|
||
|
include Rails.application.routes.url_helpers
|
||
|
|
||
|
attributes :shareable_url, :description
|
||
|
|
||
|
def shareable_url
|
||
|
shared_protocol_url(object.uuid)
|
||
|
end
|
||
|
end
|