about summary refs log tree commit diff
path: root/app/serializers/rest/identity_proof_serializer.rb
blob: 0e7415935a099dd23a971da119d248cd7c4f19c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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