added room invite button in rooms that should have it

This commit is contained in:
2025-12-31 15:44:45 +01:00
parent e7a575ae03
commit e3f9b3b8e9
10 changed files with 220 additions and 24 deletions

View File

@@ -1,3 +1,8 @@
export interface User {
uuid: string
username: string
}
export interface LoginResponse {
uuid: string
token: string
@@ -5,9 +10,10 @@ export interface LoginResponse {
export interface Room {
uuid: string
owner_name: number
owner_name: string
owner_uuid: string
name: string
globa: boolean
global: boolean
}
export interface Message {