Add more utilities, implement Accept and Reject objects

This commit is contained in:
Jesse Wierzbinski 2023-09-18 10:29:56 -10:00
parent 4d0283caf0
commit 1a1bee83a7
No known key found for this signature in database
GPG key ID: F9A1E418934E40B0
9 changed files with 230 additions and 25 deletions

View file

@ -17,7 +17,7 @@ beforeAll(async () => {
user.username = "test";
user.password = await Bun.password.hash("test");
user.display_name = "";
user.bio = "";
user.note = "";
await user.generateKeys();

View file

@ -21,7 +21,7 @@ beforeAll(async () => {
user.username = "test";
user.password = await Bun.password.hash("test");
user.display_name = "";
user.bio = "";
user.note = "";
await user.generateKeys();