summaryrefslogtreecommitdiffstats
path: root/takahe
diff options
context:
space:
mode:
Diffstat (limited to 'takahe')
-rw-r--r--takahe/settings/base.py1
-rw-r--r--takahe/settings/development.py1
-rw-r--r--takahe/settings/production.py1
-rw-r--r--takahe/urls.py3
4 files changed, 3 insertions, 3 deletions
diff --git a/takahe/settings/base.py b/takahe/settings/base.py
index 0619c45..4808d97 100644
--- a/takahe/settings/base.py
+++ b/takahe/settings/base.py
@@ -12,7 +12,6 @@ INSTALLED_APPS = [
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
- "crispy_forms",
"core",
"activities",
"users",
diff --git a/takahe/settings/development.py b/takahe/settings/development.py
index 54bc35d..051b4fb 100644
--- a/takahe/settings/development.py
+++ b/takahe/settings/development.py
@@ -10,7 +10,6 @@ MIDDLEWARE.insert(0, "core.middleware.AlwaysSecureMiddleware")
# Ensure debug features are on
DEBUG = True
-CRISPY_FAIL_SILENTLY = False
ALLOWED_HOSTS = ["*"]
CSRF_TRUSTED_ORIGINS = [
diff --git a/takahe/settings/production.py b/takahe/settings/production.py
index 2f943f4..f453177 100644
--- a/takahe/settings/production.py
+++ b/takahe/settings/production.py
@@ -11,7 +11,6 @@ except KeyError:
# Ensure debug features are off
DEBUG = False
-CRISPY_FAIL_SILENTLY = True
# TODO: Allow better setting of allowed_hosts, if we need to
ALLOWED_HOSTS = ["*"]
diff --git a/takahe/urls.py b/takahe/urls.py
index 672f7ce..2517364 100644
--- a/takahe/urls.py
+++ b/takahe/urls.py
@@ -1,12 +1,15 @@
from django.contrib import admin
from django.urls import path
+from activities.views import timelines
from core import views as core
from stator import views as stator
from users.views import activitypub, auth, identity
urlpatterns = [
path("", core.homepage),
+ # Activity views
+ path("federated/", timelines.Federated.as_view()),
# Authentication
path("auth/login/", auth.Login.as_view()),
path("auth/logout/", auth.Logout.as_view()),