Remove signaler app

This commit is contained in:
Roberto Rosario
2014-08-26 03:25:04 -04:00
parent b42e9badf6
commit a324ec78d6
7 changed files with 0 additions and 22 deletions

View File

@@ -1 +0,0 @@

View File

@@ -1,13 +0,0 @@
from django.contrib.staticfiles.management.commands import collectstatic
from signaler.signals import pre_collectstatic
class Command(collectstatic.Command):
"""
Wrapper for the collectstatic command
"""
def handle_noargs(self, *args, **kwargs):
pre_collectstatic.send(sender=self)
super(Command, self).handle_noargs(*args, **kwargs)

View File

@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@@ -1,3 +0,0 @@
from django.dispatch import Signal
pre_collectstatic = Signal()

View File

@@ -95,8 +95,6 @@ INSTALLED_APPS = (
'checkouts',
'bootstrap',
'registration',
# Has to be last so the other apps can register it's signals
'signaler'
)
MIDDLEWARE_CLASSES = (