Skip to content
Snippets Groups Projects
Commit 91da49d4 authored by Angedestenebres's avatar Angedestenebres :smiley_cat:
Browse files

Fix block time.

parent f6362904
No related branches found
No related tags found
No related merge requests found
Pipeline #2947 passed
......@@ -200,7 +200,7 @@ class Profile(db.Model):
# so it is not listed here (it requires chosing a user)
"activate": (REQUEST, ACTIVE, 120, True, _("activate")),
"reject": (REQUEST, DELETED, 120, True, _("reject")),
"block": (ACTIVE, BLOCKED, 120, True, _("block")),
"block": (ACTIVE, BLOCKED, 0, True, _("block")),
"unblock": (BLOCKED, ACTIVE, 120, True, _("unblock")),
"delete": (ACTIVE, DELETED, 120, False, _("delete")),
"delete-blocked": (BLOCKED, DELETED, 120, True, _("delete")),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment