mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-09 01:04:08 +00: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
|