Remove signaler app
This commit is contained in:
@@ -1 +0,0 @@
|
||||
|
||||
@@ -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)
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.dispatch import Signal
|
||||
|
||||
pre_collectstatic = Signal()
|
||||
@@ -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 = (
|
||||
|
||||
Reference in New Issue
Block a user