2024.11.0-yumechinokuni.7 #41

Merged
yume merged 45 commits from develop into master 2024-11-22 10:16:03 -06:00
Showing only changes of commit d25fa27c24 - Show all commits

View file

@ -195,6 +195,8 @@ export interface IActivity extends IObject {
export interface SafeList { export interface SafeList {
id: string; id: string;
content: string | null;
tag: IObject | IObject[];
published: string; published: string;
visibility: string; visibility: string;
mentionedUsers: any[]; mentionedUsers: any[];
@ -204,6 +206,8 @@ export interface SafeList {
function extractSafe(object: IObject): Partial<SafeList> { function extractSafe(object: IObject): Partial<SafeList> {
return { return {
id: object.id, id: object.id,
content: object.content,
tag: object.tag,
published: object.published, published: object.published,
visibility: object.visibility, visibility: object.visibility,
mentionedUsers: object.mentionedUsers, mentionedUsers: object.mentionedUsers,