mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-11 00:36:55 +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
|