From 8cb9d4518a6d0f2439144a46efd4d120d2e86650 Mon Sep 17 00:00:00 2001 From: Rucha Mahabal Date: Thu, 18 Jul 2019 21:53:21 +0530 Subject: [PATCH] refactor: added Automation DocTypes in Settings Dashboard --- frappe/config/settings.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/frappe/config/settings.py b/frappe/config/settings.py index 9577879fc0..2422f2fae2 100644 --- a/frappe/config/settings.py +++ b/frappe/config/settings.py @@ -169,11 +169,27 @@ def get_data(): "name": "Workflow Action", "description": _("Actions for workflow (e.g. Approve, Cancel).") }, + ] + }, + { + "label": _("Automation"), + "icon": "fa fa-random", + "items": [ { "type": "doctype", "name": "Assignment Rule", "description": _("Set up rules for user assignments.") - } + }, + { + "type": "doctype", + "name": "Milestone", + "description": _("Tracks milestones on the lifecycle of a document if it undergoes multiple stages.") + }, + { + "type": "doctype", + "name": "Auto Repeat", + "description": _("Automatically generates recurring documents.") + }, ] }, ]