added room invites to DB, and minor frontend layout changes

This commit is contained in:
2025-12-18 16:20:30 +01:00
parent d1de0583ed
commit e27b4257fe
2 changed files with 27 additions and 10 deletions

View File

@@ -32,3 +32,6 @@ INSERT INTO friend_request_ (sender, receiver) VALUES
INSERT INTO ws_token_ (token, room_id, expires_at) VALUES
('random_token_1', 1, '2025-12-31T23:59:59Z'),
('random_token_2', 2, '2025-12-31T23:59:59Z');
INSERT INTO room_invite_ (sender, receiver, room) VALUES
(2, 1, 2);