Rename actor_id columns to ap_id

This commit is contained in:
Felix Ableitner 2025-02-05 11:17:43 +01:00
parent 88b3a4c500
commit 27539cad93
3 changed files with 6 additions and 6 deletions

View file

@ -33,9 +33,9 @@ export type Community = {
*/
nsfw: boolean;
/**
* The federated actor_id.
* The federated ap_id.
*/
actor_id: DbUrl;
ap_id: DbUrl;
/**
* Whether the community is local.
*/

View file

@ -24,9 +24,9 @@ export type Person = {
published: string;
updated?: string;
/**
* The federated actor_id.
* The federated ap_id.
*/
actor_id: DbUrl;
ap_id: DbUrl;
/**
* An optional bio, in markdown.
*/

View file

@ -28,9 +28,9 @@ export type Site = {
*/
description?: string;
/**
* The federated actor_id.
* The federated ap_id.
*/
actor_id: DbUrl;
ap_id: DbUrl;
/**
* The time the site was last refreshed.
*/