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,
isStaff: true,
isVip: false,
profilePublic: true,
username: "testuser",
};
@@ -33,6 +34,7 @@ describe("auth Types", () => {
isMod: false,
isStaff: false,
isVip: true,
profilePublic: false,
username: "anotheruser",
};
@@ -53,6 +55,7 @@ describe("auth Types", () => {
isMod: false,
isStaff: false,
isVip: false,
profilePublic: false,
username: "banneduser",
};
@@ -107,6 +110,7 @@ describe("auth Types", () => {
isMod: false,
isStaff: false,
isVip: false,
profilePublic: true,
username: "testuser",
},
};