diff --git a/webapp/components/ChatNotificationMenu/ChatNotificationMenu.vue b/webapp/components/ChatNotificationMenu/ChatNotificationMenu.vue
index fcd93ee48..016410216 100644
--- a/webapp/components/ChatNotificationMenu/ChatNotificationMenu.vue
+++ b/webapp/components/ChatNotificationMenu/ChatNotificationMenu.vue
@@ -8,18 +8,34 @@
placement: 'bottom-start',
}"
>
-
+
diff --git a/webapp/graphql/Rooms.js b/webapp/graphql/Rooms.js
index e28702f77..c659ba85c 100644
--- a/webapp/graphql/Rooms.js
+++ b/webapp/graphql/Rooms.js
@@ -27,3 +27,11 @@ export const createRoom = () => gql`
}
}
`
+
+export const unreadRoomsQuery = () => {
+ return gql`
+ query {
+ UnreadRooms
+ }
+ `
+}