feat(frontend): notifications
This commit is contained in:
parent
f99d10ecf0
commit
dd9d35249c
9 changed files with 129 additions and 6 deletions
|
@ -112,3 +112,12 @@ export enum ClearableField {
|
|||
Flags = "FLAGS",
|
||||
CustomPreferences = "CUSTOM_PREFERENCES",
|
||||
}
|
||||
|
||||
export type Notification = {
|
||||
id: string;
|
||||
type: "NOTICE" | "WARNING" | "SUSPENSION";
|
||||
message?: string;
|
||||
localization_key?: string;
|
||||
localization_params: Record<string, string>;
|
||||
acknowledged: boolean;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue