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
{{ message }}
This repository was archived by the owner on Oct 5, 2024. It is now read-only.
Ensure API allows for following methods to be implemented:
/* * returns true if email already belongs to a username */function/* :bool */email_present(email){returnfalse;}/* * returns true if username was already taken */function/* :bool */uname_present(uname){returnfalse;}/* * registers a new user to the system; API automatically grants a session cookie * returns false if data contains illegal/suspicious content (or script/HTML tags) and was blocked by the server * IP will be lifetime blocked from frontend service */function/* :bool */register_user(email,passwd,uname,real_name,persistent/* (remember user?) */){returntrue;}/* * automatically grants a session cookie * returns false on invalid credentials */function/* :bool */login_user(email,passwd,persistent){returntrue;}/* * automatically grants a session cookie * returns false on invalid token */function/* :bool */login_userWithGoogle(oAuthClientToken){returntrue;}
Please Add:
The text was updated successfully, but these errors were encountered: