Files
mixtape/zero.Backoffice.UI/app/modules/pages/schemas/folder-editor.ts
T
2022-01-12 17:15:05 +01:00

11 lines
362 B
TypeScript

import { ZeroEditor } from '../../../editor/editor';
const editor = new ZeroEditor('pages:zero.folder');
editor.resourcePrefix = '@page.folder.fields.';
editor.field('isPartOfRoute', { optional: true, horizontal: true }).toggle();
editor.field('urlAlias', { optional: true, hidden: x => !x.isPartOfRoute }).text({ maxLength: 40 });
export default editor;