summaryrefslogtreecommitdiff
path: root/app/gtd/urls.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2024-08-28 12:45:16 -0500
committerluxagraf <sng@luxagraf.net>2024-08-28 12:45:16 -0500
commitd3116d1d3c77d98daa0b69ea45ac628ef91ec029 (patch)
tree3791dd20d40b8f81ebf1a4d3cb2629f11343ace5 /app/gtd/urls.py
parent45d3c43735f47e11bbe717b73f05f471750a39f2 (diff)
gtd: added author name to wiredposts so I can filter
Diffstat (limited to 'app/gtd/urls.py')
-rw-r--r--app/gtd/urls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/gtd/urls.py b/app/gtd/urls.py
index dd794fb..78e4393 100644
--- a/app/gtd/urls.py
+++ b/app/gtd/urls.py
@@ -16,6 +16,11 @@ urlpatterns = [
name="reicode"
),
path(
+ r'wiredpost/outdoor',
+ views.OutdoorPlanningView.as_view(),
+ name="outdoor"
+ ),
+ path(
r'todo',
views.GTDNoteTODOView.as_view(),
name="todo-list"