1
0
spogulis no https://github.com/mail-in-a-box/mailinabox.git synced 2026-09-09 23:59:00 +02:00

display unlimited when quota is 0

Šī revīzija ir iekļauta:
John Supplee
2019-01-28 17:24:11 +02:00
vecāks dad22f7261
revīzija b557e69313

Parādīt failu

@@ -135,7 +135,7 @@ def get_mail_users_ex(env, with_archived=False):
user = {
"email": email,
"privileges": parse_privs(privileges),
"quota": quota,
"quota": 'unlimited' if quota == '0' else quota,
"status": "active",
}
users.append(user)