feat: implement user profiles with achievements and primary badge system #58

Merged
naomi merged 17 commits from feat/user-profiles into main 2026-02-19 22:21:18 -08:00
Showing only changes of commit 198fe240f7 - Show all commits
+4
View File
@@ -20,6 +20,7 @@ describe("auth Types", () => {
isMod: true, isMod: true,
isStaff: true, isStaff: true,
isVip: false, isVip: false,
profilePublic: true,
username: "testuser", username: "testuser",
}; };
@@ -33,6 +34,7 @@ describe("auth Types", () => {
isMod: false, isMod: false,
isStaff: false, isStaff: false,
isVip: true, isVip: true,
profilePublic: false,
username: "anotheruser", username: "anotheruser",
}; };
@@ -53,6 +55,7 @@ describe("auth Types", () => {
isMod: false, isMod: false,
isStaff: false, isStaff: false,
isVip: false, isVip: false,
profilePublic: false,
username: "banneduser", username: "banneduser",
}; };
@@ -107,6 +110,7 @@ describe("auth Types", () => {
isMod: false, isMod: false,
isStaff: false, isStaff: false,
isVip: false, isVip: false,
profilePublic: true,
username: "testuser", username: "testuser",
}, },
}; };