user can join

This commit is contained in:
metacryst
2026-01-13 11:22:37 -06:00
parent 604ba9f01c
commit 6efc5b6f97
8 changed files with 64 additions and 82 deletions

View File

@@ -22,12 +22,12 @@ let eIndices = {
}
export let nodeModels = {
Member: new Member(nIndices.MEMBER),
Network: new Network(nIndices.NETWORK),
Title: new Title(nIndices.TITLE),
Payment: new Payment(nIndices.PAYMENT),
Post: new Post(nIndices.POST),
Conversation: new Conversation(nIndices.CONVERSATION),
MEMBER: new Member(nIndices.MEMBER),
NETWORK: new Network(nIndices.NETWORK),
TITLE: new Title(nIndices.TITLE),
PAYMENT: new Payment(nIndices.PAYMENT),
POST: new Post(nIndices.POST),
CONVERSATION: new Conversation(nIndices.CONVERSATION),
DM: new DM(nIndices.DM),
}