()
| 1 | def do_routes_importing(): |
| 2 | from methods.attribute.attribute_template_group import new_attribute_template_group_factory_api |
| 3 | from methods.attribute.attribute_template_list import api_attribute_template_list |
| 4 | from methods.attribute.attribute import api_attribute_update_or_new |
| 5 | from methods.attribute.attribute_template_group_update import api_attribute_template_group_update |
| 6 | |
| 7 | from methods.action.action_new import api_action_new |
| 8 | from methods.action.action_previous import api_action_previous |
| 9 | from methods.action.action_update import api_action_update |
| 10 | from methods.action.workflow import new_workflow_factory_api |
| 11 | from methods.action.workflow import workflow_view_api |
| 12 | from methods.action.workflow_update import api_workflow_update |
| 13 | from methods.action.action_template_list import api_action_template_list |
| 14 | from methods.action.action_manual import api_action_manual |
| 15 | from methods.action.action_template_get import api_get_action_template |
| 16 | from methods.action.action_run_list import api_action_list_web |
| 17 | |
| 18 | from methods.project.project_update import api_project_update |
| 19 | from methods.source_control.file.file_update import api_file_update |
| 20 | from methods.source_control.file.file_get_child_files import api_file_get_child_files |
| 21 | from methods.source_control.file.get_file_stats import api_get_file_stats |
| 22 | from methods.source_control.file.file_update_metadata import api_file_update_metadata |
| 23 | |
| 24 | from methods.project.project_list import project_list_api |
| 25 | |
| 26 | from methods.user.account.account_password import user_password_set_api |
| 27 | from methods.user import confirmation_token |
| 28 | |
| 29 | from methods.task.task.task_by_id import task_by_id_api |
| 30 | |
| 31 | # Stripe Billing Related |
| 32 | from methods.account.transact.transaction_list import transaction_list_api |
| 33 | from methods.account.billing.billing_stripe_new import stripe_new_customer_api |
| 34 | from methods.account.report.report_transactions import account_report_transactions_api |
| 35 | from methods.account.account.account_info import account_report_info_api |
| 36 | from methods.account.plan.plan_new import new_plan_api |
| 37 | |
| 38 | |
| 39 | from methods.task.task_template.job_pin import job_pin_api |
| 40 | from methods.task.task_template.job_resync import job_resync_api |
| 41 | |
| 42 | from methods.task.task.task_list import task_list_api |
| 43 | from methods.task.task.task_update import task_update_api |
| 44 | from methods.task.task.task_next import task_next |
| 45 | from methods.task.task.task_next_issue import task_next_issue |
| 46 | from methods.task.task.task_review import task_review_api |
| 47 | from methods.task.task.task_complete import api_task_complete |
| 48 | |
| 49 | from methods.task.file.dir_attach import update_dirs_to_job_api |
| 50 | from methods.source_control.file.file_exists import file_list_exists_api |
| 51 | |
| 52 | from methods.task.stats.stats_job import stats_job_api |
| 53 | from methods.task.stats.stats_task import stats_task_api |
| 54 | |
| 55 | from methods.task.task_template.job_cancel import job_cancel_api |
| 56 | from methods.task.task_template.task_template_apply import task_template_apply_api |
| 57 | from methods.task.task_template.job_info_builder import job_info_builder_api |
| 58 | |
| 59 | from methods.task.task_template.job_trainer_info import job_trainer_info_api |
| 60 | from methods.task.task_template.job_launch import task_template_launch_api |
no outgoing calls