mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 13:18:07 +01:00
14 lines
232 B
Ruby
14 lines
232 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::CredentialApplicationSerializer < REST::ApplicationSerializer
|
||
|
attributes :client_id, :client_secret
|
||
|
|
||
|
def client_id
|
||
|
object.uid
|
||
|
end
|
||
|
|
||
|
def client_secret
|
||
|
object.secret
|
||
|
end
|
||
|
end
|