1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-30 22:43:57 +02:00

enhance: 広告ごとにセンシティブフラグを設定できるように

This commit is contained in:
syuilo
2025-09-14 15:25:22 +09:00
parent d4654dd7bd
commit 2621f468ff
12 changed files with 62 additions and 2 deletions

View File

@@ -4285,6 +4285,7 @@ export type components = {
imageUrl: string;
memo: string;
dayOfWeek: number;
isSensitive: boolean;
};
Announcement: {
/**
@@ -5381,6 +5382,7 @@ export type components = {
/** Format: url */
imageUrl: string;
dayOfWeek: number;
isSensitive?: boolean;
}[];
/** @default 0 */
notesPerOneAd: number;
@@ -6242,6 +6244,7 @@ export interface operations {
startsAt: number;
imageUrl: string;
dayOfWeek: number;
isSensitive?: boolean;
};
};
};
@@ -6454,6 +6457,7 @@ export interface operations {
expiresAt?: number;
startsAt?: number;
dayOfWeek?: number;
isSensitive?: boolean;
};
};
};