mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-20 00:05:32 +02:00
enhance: アバターデコレーションへのカテゴリの導入 (#17034)
* feat(backend): AvatarDecorationにcategoryを追加し、関連APIのプロパティ・戻り値にも反映 * feat(frontend): アバターデコレーションのカテゴリ設定機能 * chore(frontend): 管理画面とユーザー側の画面で、アバターデコレーションのグループ化のコードをある程度統一 * CHANGELOGを更新 * fix: group-avatar-decorations.tsを使用するよう修正 * chore: コーディング規約への準拠 * 型エラーを解消
This commit is contained in:
@@ -6964,6 +6964,7 @@ export interface operations {
|
||||
description: string;
|
||||
url: string;
|
||||
roleIdsThatCanBeUsedThisDecoration?: string[];
|
||||
category?: string | null;
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -6985,6 +6986,7 @@ export interface operations {
|
||||
description: string;
|
||||
url: string;
|
||||
roleIdsThatCanBeUsedThisDecoration: string[];
|
||||
category: string | null;
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -7136,6 +7138,7 @@ export interface operations {
|
||||
description: string;
|
||||
url: string;
|
||||
roleIdsThatCanBeUsedThisDecoration: string[];
|
||||
category?: string | null;
|
||||
}[];
|
||||
};
|
||||
};
|
||||
@@ -7196,6 +7199,7 @@ export interface operations {
|
||||
description?: string;
|
||||
url?: string;
|
||||
roleIdsThatCanBeUsedThisDecoration?: string[];
|
||||
category?: string | null;
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -23633,6 +23637,7 @@ export interface operations {
|
||||
description: string;
|
||||
url: string;
|
||||
roleIdsThatCanBeUsedThisDecoration: string[];
|
||||
category?: string | null;
|
||||
}[];
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user