seitime-frappe/frappe/desk/page/setup_wizard/install_fixtures.py
Akhil Narang 39523916d4
fix: don't create example email domains and email accounts
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
2025-04-23 14:53:56 +05:30

66 lines
1.6 KiB
Python

# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors
# License: MIT. See LICENSE
import frappe
from frappe.desk.doctype.global_search_settings.global_search_settings import (
update_global_search_doctypes,
)
from frappe.utils.dashboard import sync_dashboards
def _(x, *args, **kwargs):
"""Redefine the translation function to return the string as is.
We want to create english records but still mark the strings as translatable.
The respective DocTypes have 'Translate Link Fields' enabled."""
return x
def install():
update_genders()
update_salutations()
update_global_search_doctypes()
sync_dashboards()
add_unsubscribe()
def update_genders():
for gender in (
_("Male"),
_("Female"),
_("Other"),
_("Transgender"),
_("Genderqueer"),
_("Non-Conforming"),
_("Prefer not to say"),
):
doc = frappe.new_doc("Gender")
doc.gender = gender
doc.insert(ignore_permissions=True, ignore_if_duplicate=True)
def update_salutations():
for salutation in (
_("Mr"),
_("Ms"),
_("Mx"),
_("Dr"),
_("Mrs"),
_("Madam"),
_("Miss"),
_("Master"),
_("Prof"),
):
doc = frappe.new_doc("Salutation")
doc.salutation = salutation
doc.insert(ignore_permissions=True, ignore_if_duplicate=True)
def add_unsubscribe():
for unsubscribe in [
{"email": "admin@example.com", "global_unsubscribe": 1},
{"email": "guest@example.com", "global_unsubscribe": 1},
]:
if not frappe.get_all("Email Unsubscribe", filters=unsubscribe):
doc = frappe.new_doc("Email Unsubscribe")
doc.update(unsubscribe)
doc.insert(ignore_permissions=True)