UserManWebInterface

Web interface class for UserMan, suitable for use with vibe.web.web.

The typical approach is to use registerUserManWebInterface instead of directly using this class.

Constructors

this
this(UserManAPI api, string prefix)
Undocumented in source.
this
deprecated this(UserManController controller, string prefix)
Undocumented in source.

Members

Functions

authenticate
User authenticate(HTTPServerRequest req, HTTPServerResponse res)
Undocumented in source. Be warned that the author may not have intended to support it.
getActivate
void getActivate(ValidEmail email, string code)
Undocumented in source. Be warned that the author may not have intended to support it.
getForgotLogin
void getForgotLogin(string _error)
Undocumented in source. Be warned that the author may not have intended to support it.
getLogin
void getLogin(string redirect, string _error)
Undocumented in source. Be warned that the author may not have intended to support it.
getLogout
void getLogout(HTTPServerResponse res)
Undocumented in source. Be warned that the author may not have intended to support it.
getProfile
void getProfile(HTTPServerRequest req, User _user, string _error)
Undocumented in source. Be warned that the author may not have intended to support it.
getRegister
void getRegister(string _error)
Undocumented in source. Be warned that the author may not have intended to support it.
getResendActivation
void getResendActivation(string _error)
Undocumented in source. Be warned that the author may not have intended to support it.
getResetPassword
void getResetPassword(string _error)
Undocumented in source. Be warned that the author may not have intended to support it.
postForgotLogin
void postForgotLogin(ValidEmail email)
Undocumented in source. Be warned that the author may not have intended to support it.
postLogin
void postLogin(string name, string password, string redirect)
Undocumented in source. Be warned that the author may not have intended to support it.
postProfile
void postProfile(HTTPServerRequest req, User _user)
Undocumented in source. Be warned that the author may not have intended to support it.
postRegister
void postRegister(ValidEmail email, Nullable!string name, string fullName, ValidPassword password, Confirm!"password" passwordConfirmation)
Undocumented in source. Be warned that the author may not have intended to support it.
postResendActivation
void postResendActivation(ValidEmail email)
Undocumented in source. Be warned that the author may not have intended to support it.
postResetPassword
void postResetPassword(ValidEmail email, string code, ValidPassword password, Confirm!"password" password_confirmation, HTTPServerResponse res)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta