justquick on 0.7.0
from actstream import registry
from django.apps import AppConfig
from django.contrib.auth.models import User
class MyappConfig(AppConfig):
name = 'myapp'
def ready(self):
registry.register(User)
registry.register(self.get_model('Post'))
registry.register(self.get_model('Comment'))