From 654516412e59044b9d853003a08b0af33dbea0ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Thu, 17 Jan 2019 16:34:31 +0200 Subject: [PATCH] Don't show Profile.api_key in admin. --- hc/accounts/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hc/accounts/admin.py b/hc/accounts/admin.py index deeef6d5..7d7331b4 100644 --- a/hc/accounts/admin.py +++ b/hc/accounts/admin.py @@ -19,7 +19,7 @@ class Fieldset: class ProfileFieldset(Fieldset): name = "User Profile" - fields = ("email", "api_key", "current_team", "reports_allowed", + fields = ("email", "current_team", "reports_allowed", "next_report_date", "nag_period", "next_nag_date", "token", "sort")