You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are many public facing structs and functions without documentation.
We should at least have a short description, but even better have doctest examples of usage for functions.
We should also have documentation for "large" private helper functions.
The text was updated successfully, but these errors were encountered:
This was broken because it required Reveaal to store all the user tokens
that is has given out. This violates the principle of idempotency. The
server cannot know when a user id is no longer in use, because we have
no "log out" endpoint and even if we had one the client could crash and
thus not send out a "log out" message.
Instead we assume that all clients are well behaved and use GetUserToken
to get a token that is not in use.
Co-authored-by: CasperStaahl <[email protected]>
There are many public facing structs and functions without documentation.
We should at least have a short description, but even better have doctest examples of usage for functions.
We should also have documentation for "large" private helper functions.
The text was updated successfully, but these errors were encountered: