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:
commit
e0df5ee076
2 changed files with 10 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
9
frappe/patches/v16_0/social_eps_deprecation_warning.py
Normal file
9
frappe/patches/v16_0/social_eps_deprecation_warning.py
Normal 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",
|
||||
)
|
||||
Loading…
Add table
Reference in a new issue