1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-06 10:52:31 +01:00

fix(util): working invisible status type

This commit is contained in:
Nobody 2022-03-08 10:52:54 -03:00 committed by Erkin Alp Güney
parent 9f21567d9e
commit c9b581c842
2 changed files with 2 additions and 2 deletions

View File

@ -360,7 +360,7 @@ export interface UserSettings {
render_reactions: boolean; render_reactions: boolean;
restricted_guilds: string[]; restricted_guilds: string[];
show_current_game: boolean; show_current_game: boolean;
status: "online" | "offline" | "dnd" | "idle"; status: "online" | "offline" | "dnd" | "idle" | "invisible";
stream_notifications_enabled: boolean; stream_notifications_enabled: boolean;
theme: "dark" | "white"; // dark theme: "dark" | "white"; // dark
timezone_offset: number; // e.g -60 timezone_offset: number; // e.g -60

View File

@ -1,4 +1,4 @@
export type Status = "idle" | "dnd" | "online" | "offline"; export type Status = "idle" | "dnd" | "online" | "offline" | "invisible";
export interface ClientStatus { export interface ClientStatus {
desktop?: string; // e.g. Windows/Linux/Mac desktop?: string; // e.g. Windows/Linux/Mac