Merge pull request #32493 from frappe/mergify/bp/develop/pr-32279

fix: add deprecation warning for social module energy points (backport #32279)
This commit is contained in:
Soham Kulkarni 2025-05-13 10:57:42 +05:30 committed by GitHub
commit e0df5ee076
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View file

@ -245,3 +245,4 @@ frappe.patches.v16_0.move_role_desk_settings_to_user
frappe.printing.doctype.print_format.patches.sets_wkhtmltopdf_as_default_for_pdf_generator_field
frappe.patches.v14_0.fix_user_settings_collation
execute:frappe.core.doctype.system_settings.system_settings.sync_system_settings
frappe.patches.v16_0.social_eps_deprecation_warning

View file

@ -0,0 +1,9 @@
import click
def execute():
click.secho(
"Social Module/Energy Points System is moving to a new app and will removed from the framework in version-16.\n"
"Please install the app to continue using the integration: https://github.com/frappe/eps",
fg="yellow",
)