mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-18 17:03:14 -08:00
13 lines
232 B
Ruby
13 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
|