From e903f4b349660d11d79de07723cbff4550b571b6 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Mon, 23 Oct 2023 22:56:31 +0300 Subject: [PATCH] Add `trackers_integration` into tenant_groups.models.Group.relevant_apps to allow per-tenant assignment for permissions around personal API tokens, see https://github.com/kiwitcms/trackers-integration/pull/44 --- tenant_groups/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tenant_groups/models.py b/tenant_groups/models.py index d856f40..564a44b 100644 --- a/tenant_groups/models.py +++ b/tenant_groups/models.py @@ -26,6 +26,7 @@ class Group(models.Model): "testplans", "testruns", "tenant_groups", + "trackers_integration", ] name = models.CharField(_('name'), max_length=150, unique=True)