diff --git a/hiboo/models.py b/hiboo/models.py index 10ea5578ef7f890a1592266de8852ca05c7351c1..c5186cb1a5d914b9adf87d73acb81aae6b1f5657 100644 --- a/hiboo/models.py +++ b/hiboo/models.py @@ -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")),