From 2b1f3b647ab6dd4b91f32ff82addf2c492f53e5d Mon Sep 17 00:00:00 2001 From: Aidaho Date: Sun, 18 Feb 2024 11:40:17 +0300 Subject: [PATCH] v7.2.0.0 Remove service check decorator from action_service route The `check_services` decorator was removed from the `action_service` route in the file 'app/routes/service/routes.py'. This change simplifies the code and avoids unnecessary service checks when performing actions on a service. --- app/routes/service/routes.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/routes/service/routes.py b/app/routes/service/routes.py index c0898ff0..a7dd98ca 100644 --- a/app/routes/service/routes.py +++ b/app/routes/service/routes.py @@ -189,7 +189,6 @@ def check_service(service): @bp.route('/action///', methods=['GET']) -@check_services def action_service(service, server_ip, action): server_ip = common.is_ip_or_dns(server_ip)