diff --git a/app/__init__.py b/app/__init__.py index ec744e2..c9f6cb1 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -46,7 +46,7 @@ def create_app(): domains = get_allowed_domains() return jsonify(domains), 200 - @app.route('/allowed_domains_with_time', methods=['GET']) + @app.route('/allowed_domains/list_with_time', methods=['GET']) def list_domains_with_time(): domains_with_time = get_allowed_domains_with_time() return jsonify(domains_with_time), 200