Alan Colon c890dc0090 Fix layout 7 лет назад
..
README.md d31188d666 Refactor, add autocomplete 7 лет назад
details.js 872c2fea59 VIEW permission 7 лет назад
index.js d31188d666 Refactor, add autocomplete 7 лет назад
list.js c890dc0090 Fix layout 7 лет назад
options.js d31188d666 Refactor, add autocomplete 7 лет назад
trash.js c890dc0090 Fix layout 7 лет назад

README.md

CRUD Pages

This utility will create standard pages for listing, creating, reading, updating, and deleting standard entities.

crudPages({
  typeName,         // string (required): MyEntity
  typePlural,       // string (optional): MyEntities
  camelName,        // string (optional): myEntity
  camelPlural,      // string (optional): myEntities
  paramName,        // string (optional): my-entity
  paramPlural,      // string (optional): my-entities
  apiPrefix,        // string (optional): /api/my-entities
  columns: [
    {
      fieldName:    // string (required): Mailing Address
      camelName:    // string (optional): mailingAddress
    }
  ]
})