1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-20 17:43:50 -05:00
2019-03-28 18:01:09 +01:00

18 lines
336 B
Ruby

# frozen_string_literal: true
class REST::IdentityProofSerializer < ActiveModel::Serializer
attributes :provider, :provider_username, :updated_at, :proof_url, :profile_url
def proof_url
object.badge.proof_url
end
def profile_url
object.badge.profile_url
end
def provider
object.provider.capitalize
end
end