28 lines
996 B
Plaintext
28 lines
996 B
Plaintext
for now we'll acheive these things via some tests
|
|
users:
|
|
- create new users via some tests
|
|
- search users
|
|
we should be able to ask for the first _n_ users in a server
|
|
this _n_ value will be 250 for now since user names should be pretty short and we're only going to care about the usernames+id's
|
|
|
|
- update
|
|
whenever a user wants to change their display name or something on the server
|
|
|
|
- remove users
|
|
whenever a user wants to be removed from a server
|
|
all we need for this one is the userid for that server then we should remove them
|
|
|
|
# todo for later but these schemas are there for sake of brevity and completeness
|
|
# they're just not being dealth with atm
|
|
channels:
|
|
|
|
# mod::invites
|
|
|
|
Better random number generation in use_invite function
|
|
|
|
# Walls
|
|
|
|
Right now there's literally 0 security checks in place and thats because:
|
|
1. im lazy with that at the moment
|
|
2. if the underlying logic is fucked then the security won't do anything
|
|
3. finally the code is built to add things onto it |