Skip to content
Snippets Groups Projects
Commit c79afc33 authored by Robert Latta's avatar Robert Latta
Browse files

added testing route for updating ims interface services

parent 9599a175
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,11 @@ def flushdb():
# IMS routes
@routes.route("update-interfaces-to-services-ims", methods=['GET', 'POST'])
def update_interfaces_to_services_ims():
ims_worker.update_interfaces_to_services_ims.delay(use_current=True)
return Response('OK')
@routes.route("update-circuit-hierarchy-ims", methods=['GET', 'POST'])
def update_circuit_hierarchy_ims():
ims_worker.update_circuit_hierarchy_ims.delay(use_current=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment