18 lines
697 B
Text
18 lines
697 B
Text
# Sample .zddc declaring a table view.
|
|
#
|
|
# Tables are declared explicitly per directory; there is no auto-mount on
|
|
# file presence. The map key becomes the URL stem: `MDL` here means the
|
|
# table view is served at <this-dir>/MDL.table.html. The value points at
|
|
# the *.table.yaml spec file (relative to this .zddc).
|
|
#
|
|
# Drop this directory under any project with a .zddc cascade granting
|
|
# read+write to the operator's email. The form re-edit URL the table
|
|
# links to (<dir>/MDL/<basename>.yaml.html) is the existing form
|
|
# handler's pattern; no separate routing is required.
|
|
|
|
title: Sample MDL — deliverables tracker
|
|
acl:
|
|
permissions:
|
|
"*@example.com": rwcd
|
|
tables:
|
|
MDL: ./MDL.table.yaml
|