require log in to edit thinks

This commit is contained in:
Christian Lawson-Perfect 2024-03-05 10:13:14 +00:00
parent 52ab7aa331
commit 46c9f0a447
4 changed files with 29 additions and 13 deletions

View file

@ -117,6 +117,7 @@ USE_TZ = True
# https://docs.djangoproject.com/en/5.0/howto/static-files/
STATIC_URL = 'static/'
STATIC_ROOT = '/srv/think.somethingorotherwhatever.com/public/static'
# Default primary key field type
# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field
@ -126,4 +127,4 @@ DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
THINKS_DIR = Path('think_data')
THINKS_DIR.mkdir(parents=True, exist_ok=True)
THINKS_STATIC_URL = 'http://{slug}.thinks.localhost'
THINKS_STATIC_URL = 'http://{slug}.think.somethingorotherwhatever.com'

View file

@ -19,5 +19,6 @@ from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path("accounts/", include("django.contrib.auth.urls")),
path("", include('thinks.urls')),
]