Changes (/shrug)
* Added middleware timer for performance debugging * Relationships and avatar database keys * CDN * Profiles are SelfAccounts in most cases, rather than Accounts * Simplified profile content management * Progression fixes * Relationships (favorites not yet implemented) * Relationship backend * Relationship and avatar routes
This commit is contained in:
16
src/db.ts
16
src/db.ts
@@ -58,6 +58,7 @@ export const KeyGroups = {
|
||||
Rooms: "rooms",
|
||||
},
|
||||
Profile_Usernames: "profile-usernames",
|
||||
PlatformAssociations: "platforms",
|
||||
Profiles: {
|
||||
Root: "profiles",
|
||||
Username: "username",
|
||||
@@ -68,6 +69,21 @@ export const KeyGroups = {
|
||||
Settings: "settings",
|
||||
DeviceClass: "deviceClass",
|
||||
Xp: "xp",
|
||||
Relationships: {
|
||||
Root: "relationships",
|
||||
IncomingFriendRequests: "incomingFriendRequests",
|
||||
OutgoingFriendRequests: "outgoingFriendRequests",
|
||||
Friends: "friends",
|
||||
Ignoring: "ignore",
|
||||
Muted: "muted",
|
||||
},
|
||||
Avatar: {
|
||||
Root: "avatar",
|
||||
Outfit: "outfit",
|
||||
Hair: "hair",
|
||||
Skin: "skin",
|
||||
Face: "face"
|
||||
}
|
||||
},
|
||||
Operators: "operators",
|
||||
Users: {
|
||||
|
||||
Reference in New Issue
Block a user