* fix: remove doctypes,workspace blocks, files * fix: minor python tests and UI tests * fix: remove blog post from tests * fix: remove blogger as role for tests * fix: add check for if doctype exists * fix: ui test * fix: more cleanup * fix: cleanup comments and fix test_query * fix: resolve conflicts * fix: add warning and handle comments
17 lines
603 B
Python
17 lines
603 B
Python
import click
|
|
|
|
|
|
def execute():
|
|
module_app_map = {
|
|
"Social Module/ Energy Points System": ("eps", "system"),
|
|
"Offsite Backup Integrations (Google Drive, S3, Dropbox)": ("offsite_backups", "intergration"),
|
|
"Newsletter": ("newsletter", "functionality"),
|
|
"Blogs": ("blogs", "functionality"),
|
|
}
|
|
for module, (app, system_type) in module_app_map.items():
|
|
click.secho(
|
|
f"{module} is moving to a new app and will removed from the framework in version-16.\n"
|
|
f"Please install the app to continue using the {system_type}: https://github.com/frappe/{app}",
|
|
fg="yellow",
|
|
)
|
|
click.secho("\n")
|