1
0

add memo and isInstanceMuted to UserRelation API entity

This commit is contained in:
Hazelnoot
2025-01-31 11:12:00 -05:00
parent 02e90e23b7
commit 5a1d1394d4
2 changed files with 66 additions and 0 deletions
@@ -58,6 +58,14 @@ export const meta = {
type: 'boolean',
optional: false, nullable: false,
},
isInstanceMuted: {
type: 'boolean',
optional: true, nullable: false,
},
memo: {
type: 'string',
optional: true, nullable: true,
},
},
},
{
@@ -103,6 +111,14 @@ export const meta = {
type: 'boolean',
optional: false, nullable: false,
},
isInstanceMuted: {
type: 'boolean',
optional: true, nullable: false,
},
memo: {
type: 'string',
optional: true, nullable: true,
},
},
},
},