From 9b6d3c9b1ac712152f1096775f3aab945e8bd068 Mon Sep 17 00:00:00 2001 From: thl-cmk <thl-cmk@outlook.com> Date: Sun, 23 Apr 2023 09:16:51 +0000 Subject: [PATCH] Delete inv_checkpoint_support.py --- web/plugins/views/inv_checkpoint_support.py | 32 --------------------- 1 file changed, 32 deletions(-) delete mode 100644 web/plugins/views/inv_checkpoint_support.py diff --git a/web/plugins/views/inv_checkpoint_support.py b/web/plugins/views/inv_checkpoint_support.py deleted file mode 100644 index 40a1077..0000000 --- a/web/plugins/views/inv_checkpoint_support.py +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - -import cmk.gui.utils -from cmk.gui.plugins.views import ( - inventory_displayhints, ) -from cmk.gui.i18n import _ - -inventory_displayhints.update({ - '.software.check_point.support:': { - 'title': _('Support'), - 'keyorder': [ - 'account_id', - 'certificate_key', - 'container', - 'description', - 'state', - 'support_renewal', - 'support_type', - ], - 'view': 'invcheckpointsupport_of_host', - }, -}) - -from cmk.gui.plugins.views.inventory import declare_invtable_view - -declare_invtable_view( - 'invcheckpointsupport', - '.software.check_point.support:', - _('Check Point support'), - _('Check Point support'), -) -- GitLab