From bdde894765e92f3bf4f6f1618ccb15500d718968 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 27 Jun 2019 08:39:07 -0400 Subject: [PATCH] [FIX] Remove tag create document registration Make no sense to have the tag create event register to existing tags. Signed-off-by: Roberto Rosario --- mayan/apps/tags/apps.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mayan/apps/tags/apps.py b/mayan/apps/tags/apps.py index ebdca5f970..978dcc1308 100644 --- a/mayan/apps/tags/apps.py +++ b/mayan/apps/tags/apps.py @@ -72,8 +72,7 @@ class TagsApp(MayanAppConfig): ModelEventType.register( model=Tag, event_types=( - event_tag_attach, event_tag_created, event_tag_edited, - event_tag_remove + event_tag_attach, event_tag_edited, event_tag_remove ) )