Primitive access for private pages

Esse commit está contido em:
Dirk Alders 2024-10-07 22:01:01 +02:00
commit a261fd1035

Ver arquivo

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