From a2dd8cb6b9b85d10eed3fc98fb23d1a185d7efd1 Mon Sep 17 00:00:00 2001 From: Dan Ward Date: Sat, 5 Oct 2013 20:39:41 +0100 Subject: [PATCH 1/2] Added app_label Meta attribute to MongoUser class --- mongoengine/django/mongo_auth/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mongoengine/django/mongo_auth/models.py b/mongoengine/django/mongo_auth/models.py index d4947a23..c391fc9d 100644 --- a/mongoengine/django/mongo_auth/models.py +++ b/mongoengine/django/mongo_auth/models.py @@ -105,3 +105,6 @@ class MongoUser(models.Model): """ objects = MongoUserManager() + + class Meta: + app_label = 'mongo_auth' From eb975d7e1300e94be8181fde454f653c9b9c9d5c Mon Sep 17 00:00:00 2001 From: Dan Ward Date: Sat, 5 Oct 2013 20:46:51 +0100 Subject: [PATCH 2/2] Added entry to AUTHORS --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index f043207b..146aa6d4 100644 --- a/AUTHORS +++ b/AUTHORS @@ -179,3 +179,4 @@ that much better: * crazyzubr (https://github.com/crazyzubr) * FrankSomething (https://github.com/FrankSomething) * Alexandr Morozov (https://github.com/LK4D4) + * Daniel Ward (https://github.com/danielward)