Explorar el Código

Primitive access for private pages

master
Dirk Alders hace 3 meses
padre
commit
a261fd1035
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      pages/access.py

+ 1
- 1
pages/access.py Ver fichero

@@ -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…
Cancelar
Guardar