diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-24 13:44:50 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-24 13:44:50 -0500 |
commit | d5c3fdc2be4cf7e19102218aea980ff2f52fc02b (patch) | |
tree | bce34d7a9e66ebd1556b14bae95141efc7fb5ce1 /app/notes/urls.py | |
parent | 1dc0faaf94b8ffcd93b303839133849bfeea0848 (diff) |
notes: added option to not filter notes
Diffstat (limited to 'app/notes/urls.py')
-rw-r--r-- | app/notes/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/notes/urls.py b/app/notes/urls.py index 760f0c3..ecf7c5c 100644 --- a/app/notes/urls.py +++ b/app/notes/urls.py @@ -8,6 +8,7 @@ urlpatterns = [ path( r'', views.NoteListView.as_view(), + {'status':None}, name="list" ), path( |