seitime-frappe/frappe/core
Ankush Menat 025727674f
fix: scheduled type syncing (#26490)
- Scheduled Job sync when type was changed from scheduled to some other
  type didn't work.
- It updates on every save with message, bad DX IMO (can't save script
  and edit without dismissing)
- This was because of complex walrus which was triggering rest of code
  even when nothing changed. Maybe walrus opponents were onto something.
- `Truthy` couples two different operations and hence makes code
  complicated. In most cases where these checks are required it's not
  performance critical, we can do 1 more function call to avoid this
  coupling of change + actual value.
2024-05-20 13:43:20 +00:00
..
api fix!: Switch to creation as default sort order 2024-03-27 11:18:28 +05:30
doctype fix: scheduled type syncing (#26490) 2024-05-20 13:43:20 +00:00
form_tour/doctype chore: remove default UI tours 2024-02-11 14:25:26 +05:30
page style: re-format with ruff 2024-02-05 18:53:33 +05:30
report feat: Allow user to optimize tables (#26109) 2024-04-23 11:49:11 +00:00
web_form fix: Edit Profile link is not redirecting correctly 2023-01-18 10:30:40 +05:30
workspace refactor: change fieldtype from Small Text to HTML Editor for card descriptions 2024-01-23 17:43:33 +05:30
__init__.py chore: Update header: license.txt => LICENSE 2021-09-03 12:02:59 +05:30
notifications.py docs: consistent doc strings 2023-12-18 18:27:39 +05:30
README.md rename Profile to User frappe/frappe#470 2014-03-11 16:14:47 +05:30
utils.py perf: Document objects without circular references (#17080) 2024-01-17 17:22:55 +05:30

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