|
|
|
@ -2,7 +2,7 @@ |
|
|
|
|
|
|
|
|
|
class REST::ApplicationSerializer < ActiveModel::Serializer |
|
|
|
|
attributes :id, :name, :website, :redirect_uri, |
|
|
|
|
:client_id, :client_secret |
|
|
|
|
:client_id, :client_secret, :vapid_key |
|
|
|
|
|
|
|
|
|
def id |
|
|
|
|
object.id.to_s |
|
|
|
@ -19,4 +19,8 @@ class REST::ApplicationSerializer < ActiveModel::Serializer |
|
|
|
|
def website |
|
|
|
|
object.website.presence |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def vapid_key |
|
|
|
|
Rails.configuration.x.vapid_public_key |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|