diff --git a/apps/workflows/__init__.py b/apps/workflows/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/apps/workflows/models.py b/apps/workflows/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/apps/workflows/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/apps/workflows/tests.py b/apps/workflows/tests.py new file mode 100644 index 0000000000..501deb776c --- /dev/null +++ b/apps/workflows/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/apps/workflows/views.py b/apps/workflows/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/apps/workflows/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/settings.py b/settings.py index c6894408c2..acb77da668 100644 --- a/settings.py +++ b/settings.py @@ -175,7 +175,7 @@ INSTALLED_APPS = ( 'main', 'rest_api', 'document_signatures', - + 'workflows', # Has to be last so the other apps can register it's signals 'signaler', ) diff --git a/urls.py b/urls.py index ee1f199449..9a4cd7ad26 100644 --- a/urls.py +++ b/urls.py @@ -33,6 +33,7 @@ urlpatterns = patterns('', (r'^documents/signatures/', include('document_signatures.urls')), (r'^feedback/', include('feedback.urls')), (r'^mailer/', include('mailer.urls')), + (r'^workflows/', include('workflows.urls')), )