Преглед изворни кода

Primitive access for private pages

master
Dirk Alders пре 3 месеци
родитељ
комит
a261fd1035
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      pages/access.py

+ 1
- 1
pages/access.py Прегледај датотеку

@@ -1,7 +1,7 @@
1 1
 # TODO: Implement access control for pages
2 2
 
3 3
 def read_page(request, rel_path):
4
-    return True
4
+    return "private" not in rel_path or write_page(request, rel_path)
5 5
 
6 6
 
7 7
 def write_page(request, rel_path):

Loading…
Откажи
Сачувај