mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
14 lines
268 B
Ruby
14 lines
268 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::ApplicationSerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :website, :redirect_uri,
|
|
:client_id, :client_secret
|
|
|
|
def client_id
|
|
object.uid
|
|
end
|
|
|
|
def client_secret
|
|
object.secret
|
|
end
|
|
end
|