Flask-User icon indicating copy to clipboard operation
Flask-User copied to clipboard

Customizable User Authorization & User Management: Register, Confirm, Login, Change username/password, Forgot password and more.

Results 104 Flask-User issues
Sort by recently updated
recently updated
newest added

I have received the following traceback: ``` Traceback (most recent call last): File "/opt/pyenv/versions/3.6.0/lib/python3.6/site-packages/flask/app.py", line 2309, in __call__ return self.wsgi_app(environ, start_response) File "/opt/pyenv/versions/3.6.0/lib/python3.6/site-packages/flask/app.py", line 2295, in wsgi_app response = self.handle_exception(e)...

https://github.com/lingthio/Flask-User/blob/a379fa0a281789618c484b459cb41236779b95b1/flask_user/user_manager__views.py#L565 I think this line should be skipped if the email is already confirmed to avoid overwriting the original time.

I just got a flash message that looked like this: > Your email address has not yet been confirmed. Check your email Inbox and Spam folders for the confirmation email...

Hi, is there a working exemple of custom DB Adapter somewhere (with app factory pattern)? It seems to me that calling ``UserManager.init_app()`` requires ``db`` to be a predefined or custom...

Just got email to work but the link inside goes to 127.0.0.1 is there anyway I can change the base url to my domain name instead? Any help would be...

I have found that when I am trying to confirm email, then UserManager__Views.confirm_email_view calls self.db_manager.save_user_and_user_email(user, user_email) witch in turns calls self.db_adapter.save_object(user) and this does nothing silently. It is very confusing...

ACTUAL: ```user_manager.find_user_by_email()``` and ```user_manager.find_user_by_username()``` do not ignore special characters, such as ```_``` which is treated as a wildcard. This results in finding emails and usernames that should not be found....

This is a feature request for adding permissions to roles. This would likely entail extending the optional Role and UserRoles data-models to include Permission and RolePermissions data-models. Is adding something...

As an unregistered user I can resend as many email as I want to everybody, who is already registered via this endpoint: `/user/resend-email-confirmation`. Also this is a possibility to find...