This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues/pull-requests.
flatfilecms/flatfilecms/resources.py

15 lines
280 B
Python

from flatfilecms.models import Folder
class Root(Folder):
def __init__(self, path):
super(Root, self).__init__('', None, path)
roots = {}
def root_factory(request):
path = request.registry.settings['pages_path']
return roots.setdefault(path, Root(path))