seitime-frappe/frappe/core
Ankush Menat a0ecb912db fix!: dont delete customizations when doctypes are deleted
If someone deletes doctype and restores it back all customization are
lost, there's no "real" reason to delete all these customization. They
are only ever active if the doctype is being used.

Explanations:

- Custom field: is used by meta when doctype meta is requested, if meta
  isn't requested then custom field is effectively inactive.
- Client script: loaded by meta when doctype is requested by desk. So
  inactive in deleted state.
- Property setter: loaded by meta, so inactive when doctype isn't
  present.
- Report: will break doctype isn't present, but user should delete them
  manually to avoid loss of "scripts" or anything special they might
  have done. Also report's doctype don't 100% indicate that it's based
  solely on that doctype.
2022-05-29 13:46:44 +05:30
..
doctype fix!: dont delete customizations when doctypes are deleted 2022-05-29 13:46:44 +05:30
form_tour/doctype fix: module load issue, tour description and save field overlay 2021-11-25 17:57:07 +05:30
page refactor: Remove unused imports & code 2022-05-19 15:34:35 +05:30
report refactor: Remove unused imports & code 2022-05-19 15:34:35 +05:30
web_form refactor: Remove unused imports & code 2022-05-19 15:34:35 +05:30
workspace fix: updated standard workspace json files 2022-01-13 18:40:36 +05:30
__init__.py chore: Update header: license.txt => LICENSE 2021-09-03 12:02:59 +05:30
notifications.py refactor: Remove unused imports & code 2022-05-19 15:34:35 +05:30
README.md rename Profile to User frappe/frappe#470 2014-03-11 16:14:47 +05:30
utils.py style: format all python files using black (#16453) 2022-04-12 10:59:25 +05:30

Core module contains the models required for the basic functioning of frappe including DocType, User (user), Role and others.