mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-28 01:26:58 +00:00
fix rebase error
This commit is contained in:
parent
e030facaa9
commit
86a7d33f3f
1 changed files with 54 additions and 0 deletions
|
@ -502,6 +502,60 @@ export type ModerationLogPayloads = {
|
|||
id: string;
|
||||
host: string;
|
||||
};
|
||||
|
||||
clearUserFiles: {
|
||||
userId: string;
|
||||
userUsername: string;
|
||||
userHost: string | null;
|
||||
count: number;
|
||||
};
|
||||
nsfwUser: {
|
||||
userId: string;
|
||||
userUsername: string;
|
||||
userHost: string | null;
|
||||
};
|
||||
unNsfwUser: {
|
||||
userId: string;
|
||||
userUsername: string;
|
||||
userHost: string | null;
|
||||
};
|
||||
silenceUser: {
|
||||
userId: string;
|
||||
userUsername: string;
|
||||
userHost: string | null;
|
||||
};
|
||||
unSilenceUser: {
|
||||
userId: string;
|
||||
userUsername: string;
|
||||
userHost: string | null;
|
||||
};
|
||||
createAccount: {
|
||||
userId: string;
|
||||
userUsername: string;
|
||||
};
|
||||
clearRemoteFiles: Record<string, never>;
|
||||
clearOwnerlessFiles: {
|
||||
count: number;
|
||||
};
|
||||
updateCustomEmojis: {
|
||||
ids: string[],
|
||||
category?: string | null,
|
||||
license?: string | null,
|
||||
setAliases?: string[],
|
||||
addAliases?: string[],
|
||||
delAliases?: string[],
|
||||
};
|
||||
importCustomEmojis: {
|
||||
fileId: string,
|
||||
fileName: string,
|
||||
};
|
||||
clearInstanceFiles: {
|
||||
host: string;
|
||||
count: number;
|
||||
};
|
||||
severFollowRelations: {
|
||||
host: string;
|
||||
};
|
||||
createPromo: {
|
||||
noteId: string,
|
||||
noteUserId: string;
|
||||
|
|
Loading…
Add table
Reference in a new issue