32 lines
465 B
YAML
32 lines
465 B
YAML
|
name: mycol
|
||
|
uploadPath: ../media/mycol
|
||
|
|
||
|
meta:
|
||
|
label: { de: mycol, en: mycol }
|
||
|
rowIdentTpl: { twig: "{{ title }}" }
|
||
|
views:
|
||
|
- type: table
|
||
|
columns:
|
||
|
- title
|
||
|
|
||
|
permissions:
|
||
|
public:
|
||
|
methods:
|
||
|
get: true
|
||
|
post: false
|
||
|
put: false
|
||
|
delete: false
|
||
|
user:
|
||
|
methods:
|
||
|
get: true
|
||
|
post: true
|
||
|
put: false
|
||
|
delete: false
|
||
|
|
||
|
hooks:
|
||
|
get:
|
||
|
return:
|
||
|
type: javascript
|
||
|
file: hooks/mycol/get_return.js
|
||
|
|