From dc8d7b019ae9a9dce93369ac1579a0b408ef99b0 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 28 Aug 2023 20:21:42 +0530 Subject: [PATCH] refactor!: Lower roles from `All` To `Desk User` --- frappe/automation/doctype/reminder/reminder.json | 4 ++-- frappe/core/doctype/activity_log/activity_log.json | 12 +----------- frappe/core/doctype/report/report.json | 4 ++-- frappe/core/doctype/role/role.js | 7 ++++++- .../doctype/submission_queue/submission_queue.json | 4 ++-- frappe/core/doctype/user_group/user_group.json | 6 ++++-- .../doctype/doctype_layout/doctype_layout.json | 4 ++-- frappe/desk/doctype/calendar_view/calendar_view.json | 8 +++++--- .../doctype/custom_html_block/custom_html_block.json | 6 +++--- frappe/desk/doctype/dashboard/dashboard.json | 5 +++-- .../doctype/dashboard_chart/dashboard_chart.json | 4 ++-- .../dashboard_settings/dashboard_settings.json | 6 ++++-- frappe/desk/doctype/form_tour/form_tour.json | 4 ++-- frappe/desk/doctype/kanban_board/kanban_board.json | 6 +++--- frappe/desk/doctype/list_filter/list_filter.json | 4 ++-- .../doctype/module_onboarding/module_onboarding.json | 5 +++-- frappe/desk/doctype/note/note.json | 8 ++++---- frappe/desk/doctype/number_card/number_card.json | 6 +++--- .../doctype/onboarding_step/onboarding_step.json | 5 +++-- .../doctype/document_follow/document_follow.json | 7 ++++--- .../email/doctype/email_template/email_template.json | 4 ++-- .../doctype/google_calendar/google_calendar.json | 8 ++++++-- .../doctype/google_contacts/google_contacts.json | 4 ++-- frappe/printing/doctype/letter_head/letter_head.json | 4 ++-- .../network_printer_settings.json | 5 +++-- .../printing/doctype/print_format/print_format.json | 4 ++-- .../doctype/energy_point_log/energy_point_log.json | 4 ++-- .../marketing_campaign/marketing_campaign.json | 4 ++-- .../doctype/workflow_action/workflow_action.json | 4 ++-- .../doctype/workflow_state/workflow_state.json | 4 ++-- 30 files changed, 85 insertions(+), 75 deletions(-) diff --git a/frappe/automation/doctype/reminder/reminder.json b/frappe/automation/doctype/reminder/reminder.json index a288f205a242..07dbe7725f46 100644 --- a/frappe/automation/doctype/reminder/reminder.json +++ b/frappe/automation/doctype/reminder/reminder.json @@ -66,7 +66,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-02-24 13:47:50.419648", + "modified": "2023-08-28 22:17:18.351025", "modified_by": "Administrator", "module": "Automation", "name": "Reminder", @@ -78,7 +78,7 @@ "delete": 1, "if_owner": 1, "read": 1, - "role": "All", + "role": "Desk User", "write": 1 } ], diff --git a/frappe/core/doctype/activity_log/activity_log.json b/frappe/core/doctype/activity_log/activity_log.json index c6c4b2102b83..942cfc8dd2c9 100644 --- a/frappe/core/doctype/activity_log/activity_log.json +++ b/frappe/core/doctype/activity_log/activity_log.json @@ -158,7 +158,7 @@ "icon": "fa fa-comment", "index_web_pages_for_search": 1, "links": [], - "modified": "2023-07-28 13:26:32.281278", + "modified": "2023-08-28 20:22:10.992615", "modified_by": "Administrator", "module": "Core", "name": "Activity Log", @@ -170,16 +170,6 @@ "report": 1, "role": "System Manager", "share": 1 - }, - { - "email": 1, - "export": 1, - "if_owner": 1, - "print": 1, - "read": 1, - "report": 1, - "role": "All", - "share": 1 } ], "search_fields": "subject", diff --git a/frappe/core/doctype/report/report.json b/frappe/core/doctype/report/report.json index 9b6b04afcca2..f3e94500345f 100644 --- a/frappe/core/doctype/report/report.json +++ b/frappe/core/doctype/report/report.json @@ -231,7 +231,7 @@ "print": 1, "read": 1, "report": 1, - "role": "All" + "role": "Desk User" } ], "show_name_in_global_search": 1, @@ -239,4 +239,4 @@ "sort_order": "DESC", "states": [], "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/core/doctype/role/role.js b/frappe/core/doctype/role/role.js index c0a65bcf5895..d943e7ba071d 100644 --- a/frappe/core/doctype/role/role.js +++ b/frappe/core/doctype/role/role.js @@ -5,7 +5,12 @@ frappe.ui.form.on("Role", { refresh: function (frm) { if (frm.doc.name === "All") { frm.dashboard.add_comment( - __("Role 'All' will be given to all System Users."), + __("Role 'All' will be given to all system + website users."), + "yellow" + ); + } else if (frm.doc.name === "Desk User") { + frm.dashboard.add_comment( + __("Role 'Desk User' will be given to all system users."), "yellow" ); } diff --git a/frappe/core/doctype/submission_queue/submission_queue.json b/frappe/core/doctype/submission_queue/submission_queue.json index 04668e1c76ba..d9910cdf80e5 100644 --- a/frappe/core/doctype/submission_queue/submission_queue.json +++ b/frappe/core/doctype/submission_queue/submission_queue.json @@ -88,7 +88,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-01-23 12:45:53.997708", + "modified": "2023-08-28 22:25:55.480699", "modified_by": "Administrator", "module": "Core", "name": "Submission Queue", @@ -107,7 +107,7 @@ { "if_owner": 1, "read": 1, - "role": "All" + "role": "Desk User" } ], "sort_field": "modified", diff --git a/frappe/core/doctype/user_group/user_group.json b/frappe/core/doctype/user_group/user_group.json index e807372061f0..a67ceea2d2d8 100644 --- a/frappe/core/doctype/user_group/user_group.json +++ b/frappe/core/doctype/user_group/user_group.json @@ -19,10 +19,11 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2021-04-15 16:12:31.455401", + "modified": "2023-08-28 22:25:16.941457", "modified_by": "Administrator", "module": "Core", "name": "User Group", + "naming_rule": "Set by user", "owner": "Administrator", "permissions": [ { @@ -39,10 +40,11 @@ }, { "read": 1, - "role": "All" + "role": "Desk User" } ], "sort_field": "modified", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/custom/doctype/doctype_layout/doctype_layout.json b/frappe/custom/doctype/doctype_layout/doctype_layout.json index ffb5cdae31e3..5237e7615e99 100644 --- a/frappe/custom/doctype/doctype_layout/doctype_layout.json +++ b/frappe/custom/doctype/doctype_layout/doctype_layout.json @@ -43,7 +43,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-02-14 17:53:24.486171", + "modified": "2023-08-28 22:24:08.103972", "modified_by": "Administrator", "module": "Custom", "name": "DocType Layout", @@ -64,7 +64,7 @@ }, { "read": 1, - "role": "All" + "role": "Desk User" } ], "route": "doctype-layout", diff --git a/frappe/desk/doctype/calendar_view/calendar_view.json b/frappe/desk/doctype/calendar_view/calendar_view.json index 8ef49e399dad..8149446a3ec2 100644 --- a/frappe/desk/doctype/calendar_view/calendar_view.json +++ b/frappe/desk/doctype/calendar_view/calendar_view.json @@ -53,10 +53,11 @@ } ], "links": [], - "modified": "2020-09-18 17:26:09.703215", + "modified": "2023-08-28 22:29:39.662726", "modified_by": "Administrator", "module": "Desk", "name": "Calendar View", + "naming_rule": "Set by user", "owner": "Administrator", "permissions": [ { @@ -73,9 +74,10 @@ }, { "read": 1, - "role": "All" + "role": "Desk User" } ], "sort_field": "modified", - "sort_order": "DESC" + "sort_order": "DESC", + "states": [] } \ No newline at end of file diff --git a/frappe/desk/doctype/custom_html_block/custom_html_block.json b/frappe/desk/doctype/custom_html_block/custom_html_block.json index 8fb06003ce80..f65ba5177dbd 100644 --- a/frappe/desk/doctype/custom_html_block/custom_html_block.json +++ b/frappe/desk/doctype/custom_html_block/custom_html_block.json @@ -93,7 +93,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-05-30 14:33:31.994738", + "modified": "2023-08-28 20:25:00.740795", "modified_by": "Administrator", "module": "Desk", "name": "Custom HTML Block", @@ -106,7 +106,7 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1 }, { @@ -118,7 +118,7 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1, "write": 1 }, diff --git a/frappe/desk/doctype/dashboard/dashboard.json b/frappe/desk/doctype/dashboard/dashboard.json index 95b084645209..5b6f4eba86e5 100644 --- a/frappe/desk/doctype/dashboard/dashboard.json +++ b/frappe/desk/doctype/dashboard/dashboard.json @@ -67,7 +67,7 @@ } ], "links": [], - "modified": "2020-07-23 11:05:41.890459", + "modified": "2023-08-28 22:35:02.993039", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard", @@ -103,13 +103,14 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1 } ], "quick_entry": 1, "sort_field": "modified", "sort_order": "DESC", + "states": [], "title_field": "dashboard_name", "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.json b/frappe/desk/doctype/dashboard_chart/dashboard_chart.json index d50f58c9aff8..6d4a86d535e7 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.json +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -287,7 +287,7 @@ } ], "links": [], - "modified": "2023-08-14 16:33:30.172798", + "modified": "2023-08-28 20:20:54.186299", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard Chart", @@ -324,7 +324,7 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1 } ], diff --git a/frappe/desk/doctype/dashboard_settings/dashboard_settings.json b/frappe/desk/doctype/dashboard_settings/dashboard_settings.json index e1eb75db473b..504cd4b6f220 100644 --- a/frappe/desk/doctype/dashboard_settings/dashboard_settings.json +++ b/frappe/desk/doctype/dashboard_settings/dashboard_settings.json @@ -27,10 +27,11 @@ ], "in_create": 1, "links": [], - "modified": "2020-04-01 00:07:26.489561", + "modified": "2023-08-28 22:23:42.722543", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard Settings", + "naming_rule": "Set by user", "owner": "Administrator", "permissions": [ { @@ -39,7 +40,7 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1, "write": 1 } @@ -47,5 +48,6 @@ "read_only": 1, "sort_field": "modified", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/form_tour/form_tour.json b/frappe/desk/doctype/form_tour/form_tour.json index 95ec270f2c9b..6c049998c7de 100644 --- a/frappe/desk/doctype/form_tour/form_tour.json +++ b/frappe/desk/doctype/form_tour/form_tour.json @@ -178,7 +178,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-05-25 11:30:44.396248", + "modified": "2023-08-28 20:24:42.594360", "modified_by": "Administrator", "module": "Desk", "name": "Form Tour", @@ -199,7 +199,7 @@ }, { "read": 1, - "role": "All" + "role": "Desk User" } ], "sort_field": "modified", diff --git a/frappe/desk/doctype/kanban_board/kanban_board.json b/frappe/desk/doctype/kanban_board/kanban_board.json index b1f120687cec..296aa010e892 100644 --- a/frappe/desk/doctype/kanban_board/kanban_board.json +++ b/frappe/desk/doctype/kanban_board/kanban_board.json @@ -84,7 +84,7 @@ } ], "links": [], - "modified": "2022-04-13 12:10:20.284367", + "modified": "2023-08-28 22:29:29.569670", "modified_by": "Administrator", "module": "Desk", "name": "Kanban Board", @@ -93,14 +93,14 @@ "permissions": [ { "read": 1, - "role": "All" + "role": "Desk User" }, { "create": 1, "delete": 1, "if_owner": 1, "read": 1, - "role": "All", + "role": "Desk User", "write": 1 }, { diff --git a/frappe/desk/doctype/list_filter/list_filter.json b/frappe/desk/doctype/list_filter/list_filter.json index 257bbc6d45c3..c897aefeb8ac 100644 --- a/frappe/desk/doctype/list_filter/list_filter.json +++ b/frappe/desk/doctype/list_filter/list_filter.json @@ -36,7 +36,7 @@ ], "in_create": 1, "links": [], - "modified": "2022-08-03 12:20:50.889979", + "modified": "2023-08-28 22:32:51.465521", "modified_by": "Administrator", "module": "Desk", "name": "List Filter", @@ -50,7 +50,7 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1, "write": 1 } diff --git a/frappe/desk/doctype/module_onboarding/module_onboarding.json b/frappe/desk/doctype/module_onboarding/module_onboarding.json index 02a18b9c2de2..1eca83571b27 100644 --- a/frappe/desk/doctype/module_onboarding/module_onboarding.json +++ b/frappe/desk/doctype/module_onboarding/module_onboarding.json @@ -82,7 +82,7 @@ } ], "links": [], - "modified": "2020-06-08 15:36:04.701049", + "modified": "2023-08-28 22:24:02.233272", "modified_by": "Administrator", "module": "Desk", "name": "Module Onboarding", @@ -106,12 +106,13 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1 } ], "read_only": 1, "sort_field": "modified", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/desk/doctype/note/note.json b/frappe/desk/doctype/note/note.json index b297e2ada6a4..16b70171f5eb 100644 --- a/frappe/desk/doctype/note/note.json +++ b/frappe/desk/doctype/note/note.json @@ -86,7 +86,7 @@ "icon": "fa fa-file-text", "idx": 1, "links": [], - "modified": "2023-04-24 16:07:03.281184", + "modified": "2023-08-28 20:23:59.424943", "modified_by": "Administrator", "module": "Desk", "name": "Note", @@ -122,21 +122,21 @@ "print": 1, "read": 1, "report": 1, - "role": "All" + "role": "Desk User" }, { "create": 1, "delete": 1, "email": 1, "if_owner": 1, - "role": "All", + "role": "Desk User", "share": 1, "write": 1 }, { "permlevel": 1, "read": 1, - "role": "All" + "role": "Desk User" } ], "quick_entry": 1, diff --git a/frappe/desk/doctype/number_card/number_card.json b/frappe/desk/doctype/number_card/number_card.json index ab33715d1257..50447a7bdb41 100644 --- a/frappe/desk/doctype/number_card/number_card.json +++ b/frappe/desk/doctype/number_card/number_card.json @@ -191,8 +191,8 @@ "options": "Sum\nAverage\nMinimum\nMaximum" }, { - "description": "The document type selected is a child table, so the parent document type is required.", "depends_on": "eval: doc.type === 'Document Type'", + "description": "The document type selected is a child table, so the parent document type is required.", "fieldname": "parent_document_type", "fieldtype": "Link", "label": "Parent Document Type", @@ -200,7 +200,7 @@ } ], "links": [], - "modified": "2022-06-12 15:34:38.210910", + "modified": "2023-08-28 22:23:56.286804", "modified_by": "Administrator", "module": "Desk", "name": "Number Card", @@ -236,7 +236,7 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1 } ], diff --git a/frappe/desk/doctype/onboarding_step/onboarding_step.json b/frappe/desk/doctype/onboarding_step/onboarding_step.json index b5d7851ecac0..f81550b352ff 100644 --- a/frappe/desk/doctype/onboarding_step/onboarding_step.json +++ b/frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -217,7 +217,7 @@ } ], "links": [], - "modified": "2021-12-02 10:56:04.448580", + "modified": "2023-08-28 22:23:48.174317", "modified_by": "Administrator", "module": "Desk", "name": "Onboarding Step", @@ -242,7 +242,7 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1 } ], @@ -250,5 +250,6 @@ "read_only": 1, "sort_field": "modified", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/email/doctype/document_follow/document_follow.json b/frappe/email/doctype/document_follow/document_follow.json index 5a9ff9625520..5dec26821781 100644 --- a/frappe/email/doctype/document_follow/document_follow.json +++ b/frappe/email/doctype/document_follow/document_follow.json @@ -41,7 +41,7 @@ "in_create": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2020-09-17 09:19:28.496453", + "modified": "2023-08-28 22:34:53.394652", "modified_by": "Administrator", "module": "Email", "name": "Document Follow", @@ -67,12 +67,13 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1, "write": 1 } ], "read_only": 1, "sort_field": "modified", - "sort_order": "DESC" + "sort_order": "DESC", + "states": [] } \ No newline at end of file diff --git a/frappe/email/doctype/email_template/email_template.json b/frappe/email/doctype/email_template/email_template.json index 00f14284754b..0362a820e57e 100644 --- a/frappe/email/doctype/email_template/email_template.json +++ b/frappe/email/doctype/email_template/email_template.json @@ -57,7 +57,7 @@ ], "icon": "fa fa-comment", "links": [], - "modified": "2023-01-02 03:56:48.437280", + "modified": "2023-08-28 22:29:04.457992", "modified_by": "Administrator", "module": "Email", "name": "Email Template", @@ -66,7 +66,7 @@ "permissions": [ { "read": 1, - "role": "All" + "role": "Desk User" }, { "create": 1, diff --git a/frappe/integrations/doctype/google_calendar/google_calendar.json b/frappe/integrations/doctype/google_calendar/google_calendar.json index 2c34e6967a6d..102569e20d04 100644 --- a/frappe/integrations/doctype/google_calendar/google_calendar.json +++ b/frappe/integrations/doctype/google_calendar/google_calendar.json @@ -1,4 +1,5 @@ { + "actions": [], "autoname": "field:calendar_name", "creation": "2019-07-06 17:54:09.450100", "doctype": "DocType", @@ -108,10 +109,12 @@ "label": "Push to Google Calendar" } ], - "modified": "2019-08-08 15:44:15.798362", + "links": [], + "modified": "2023-08-28 22:21:44.238862", "modified_by": "Administrator", "module": "Integrations", "name": "Google Calendar", + "naming_rule": "By fieldname", "owner": "Administrator", "permissions": [ { @@ -135,12 +138,13 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1, "write": 1 } ], "sort_field": "modified", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/integrations/doctype/google_contacts/google_contacts.json b/frappe/integrations/doctype/google_contacts/google_contacts.json index 4a72651e676c..2143cc6ca892 100644 --- a/frappe/integrations/doctype/google_contacts/google_contacts.json +++ b/frappe/integrations/doctype/google_contacts/google_contacts.json @@ -99,7 +99,7 @@ } ], "links": [], - "modified": "2023-03-30 11:25:48.832384", + "modified": "2023-08-28 20:22:58.267442", "modified_by": "Administrator", "module": "Integrations", "name": "Google Contacts", @@ -121,7 +121,7 @@ "delete": 1, "if_owner": 1, "read": 1, - "role": "All", + "role": "Desk User", "write": 1 } ], diff --git a/frappe/printing/doctype/letter_head/letter_head.json b/frappe/printing/doctype/letter_head/letter_head.json index d49b65ab36b8..daf1a2022128 100644 --- a/frappe/printing/doctype/letter_head/letter_head.json +++ b/frappe/printing/doctype/letter_head/letter_head.json @@ -168,7 +168,7 @@ "idx": 1, "links": [], "max_attachments": 3, - "modified": "2022-06-16 23:10:46.852116", + "modified": "2023-08-28 22:19:23.720332", "modified_by": "Administrator", "module": "Printing", "name": "Letter Head", @@ -188,7 +188,7 @@ }, { "read": 1, - "role": "All" + "role": "Desk User" } ], "sort_field": "modified", diff --git a/frappe/printing/doctype/network_printer_settings/network_printer_settings.json b/frappe/printing/doctype/network_printer_settings/network_printer_settings.json index 11f1382225b4..019d4ccd0c9a 100644 --- a/frappe/printing/doctype/network_printer_settings/network_printer_settings.json +++ b/frappe/printing/doctype/network_printer_settings/network_printer_settings.json @@ -41,7 +41,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2021-10-07 11:23:13.799402", + "modified": "2023-08-28 22:25:22.236295", "modified_by": "Administrator", "module": "Printing", "name": "Network Printer Settings", @@ -66,11 +66,12 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1 } ], "sort_field": "modified", "sort_order": "DESC", + "states": [], "track_changes": 1 } \ No newline at end of file diff --git a/frappe/printing/doctype/print_format/print_format.json b/frappe/printing/doctype/print_format/print_format.json index 664692ec4579..8058700dbf42 100644 --- a/frappe/printing/doctype/print_format/print_format.json +++ b/frappe/printing/doctype/print_format/print_format.json @@ -259,7 +259,7 @@ "icon": "fa fa-print", "idx": 1, "links": [], - "modified": "2023-05-31 15:40:52.919029", + "modified": "2023-08-28 20:25:09.660073", "modified_by": "Administrator", "module": "Printing", "name": "Print Format", @@ -278,7 +278,7 @@ "write": 1 }, { - "role": "All", + "role": "Desk User", "select": 1 } ], diff --git a/frappe/social/doctype/energy_point_log/energy_point_log.json b/frappe/social/doctype/energy_point_log/energy_point_log.json index f24545407e99..f71a1bda69b1 100644 --- a/frappe/social/doctype/energy_point_log/energy_point_log.json +++ b/frappe/social/doctype/energy_point_log/energy_point_log.json @@ -110,7 +110,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2022-09-13 16:10:37.747013", + "modified": "2023-08-28 22:33:08.420000", "modified_by": "Administrator", "module": "Social", "name": "Energy Point Log", @@ -124,7 +124,7 @@ { "read": 1, "report": 1, - "role": "All" + "role": "Desk User" } ], "sort_field": "modified", diff --git a/frappe/website/doctype/marketing_campaign/marketing_campaign.json b/frappe/website/doctype/marketing_campaign/marketing_campaign.json index 0a5fc45b2972..4d179b826fd1 100644 --- a/frappe/website/doctype/marketing_campaign/marketing_campaign.json +++ b/frappe/website/doctype/marketing_campaign/marketing_campaign.json @@ -21,7 +21,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2023-03-20 22:47:25.768582", + "modified": "2023-08-28 22:26:04.298759", "modified_by": "Administrator", "module": "Website", "name": "Marketing Campaign", @@ -53,7 +53,7 @@ "write": 1 }, { - "role": "All", + "role": "Desk User", "select": 1 } ], diff --git a/frappe/workflow/doctype/workflow_action/workflow_action.json b/frappe/workflow/doctype/workflow_action/workflow_action.json index aeb60fecebf8..ace2290cef90 100644 --- a/frappe/workflow/doctype/workflow_action/workflow_action.json +++ b/frappe/workflow/doctype/workflow_action/workflow_action.json @@ -79,7 +79,7 @@ } ], "links": [], - "modified": "2022-02-23 21:06:45.122258", + "modified": "2023-08-28 22:32:58.947849", "modified_by": "Administrator", "module": "Workflow", "name": "Workflow Action", @@ -88,7 +88,7 @@ { "delete": 1, "read": 1, - "role": "All" + "role": "Desk User" } ], "sort_field": "modified", diff --git a/frappe/workflow/doctype/workflow_state/workflow_state.json b/frappe/workflow/doctype/workflow_state/workflow_state.json index 1b175058c3f2..e622ae30c778 100644 --- a/frappe/workflow/doctype/workflow_state/workflow_state.json +++ b/frappe/workflow/doctype/workflow_state/workflow_state.json @@ -40,7 +40,7 @@ "icon": "fa fa-flag", "idx": 1, "links": [], - "modified": "2023-03-13 22:33:58.504532", + "modified": "2023-08-28 22:19:35.232574", "modified_by": "Administrator", "module": "Workflow", "name": "Workflow State", @@ -58,7 +58,7 @@ "write": 1 }, { - "role": "All", + "role": "Desk User", "select": 1 } ],