feat(P5C.T2): per-conv 'mentions only' toggle + notification gate

This commit is contained in:
byGalax
2026-05-16 22:22:04 +02:00
parent b8b451ef4f
commit 7ebc5f6c9d
6 changed files with 71 additions and 5 deletions
+3
View File
@@ -57,6 +57,7 @@ export type Database = {
accepted: boolean
conversation_id: string
joined_at: string
mentions_only: boolean
role: Database["public"]["Enums"]["member_role"]
user_id: string
}
@@ -64,6 +65,7 @@ export type Database = {
accepted?: boolean
conversation_id: string
joined_at?: string
mentions_only?: boolean
role?: Database["public"]["Enums"]["member_role"]
user_id: string
}
@@ -71,6 +73,7 @@ export type Database = {
accepted?: boolean
conversation_id?: string
joined_at?: string
mentions_only?: boolean
role?: Database["public"]["Enums"]["member_role"]
user_id?: string
}