wa_strapi
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
416 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "message_templates",
  4. "info": {
  5. "name": "Message_Template",
  6. "description": ""
  7. },
  8. "options": {
  9. "increments": true,
  10. "timestamps": true,
  11. "draftAndPublish": true
  12. },
  13. "attributes": {
  14. "body": {
  15. "type": "text",
  16. "required": true
  17. },
  18. "state": {
  19. "type": "string"
  20. },
  21. "name": {
  22. "type": "string"
  23. }
  24. }
  25. }