From 7bf3f5db0fe720bfb5cb9d85dfb01cdeae13af9d Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sat, 23 Apr 2011 09:03:25 -0500 Subject: [PATCH] Adding a space for custom validators, though we haven't used it yet :) --- mediagoblin/models.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mediagoblin/models.py b/mediagoblin/models.py index 364f7ebf..f3d380cf 100644 --- a/mediagoblin/models.py +++ b/mediagoblin/models.py @@ -21,6 +21,15 @@ from mongokit import Document, Set from mediagoblin.auth import lib as auth_lib +################### +# Custom validators +################### + +######## +# Models +######## + + class User(Document): __collection__ = 'users'