2
0
mirror of https://github.com/frappe/books.git synced 2025-01-22 14:48:25 +00:00

Delete todo.js

This commit is contained in:
Rushabh Mehta 2018-02-19 12:46:52 +05:30 committed by GitHub
parent cba8b401fd
commit 6033f711ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,34 +0,0 @@
module.exports = {
"autoname": "random",
"name": "ToDo",
"doctype": "DocType",
"isSingle": 0,
"keywordFields": [
"subject",
"description"
],
"fields": [
{
"fieldname": "subject",
"label": "Subject",
"fieldtype": "Data",
"required": 1
},
{
"fieldname": "status",
"label": "Status",
"fieldtype": "Select",
"options": [
"Open",
"Closed"
],
"default": "Open",
"required": 1
},
{
"fieldname": "description",
"label": "Description",
"fieldtype": "Text"
}
]
}