aboutsummaryrefslogtreecommitdiff
path: root/source/library
diff options
context:
space:
mode:
Diffstat (limited to 'source/library')
-rw-r--r--source/library/service_status.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/source/library/service_status.js b/source/library/service_status.js
deleted file mode 100644
index 96c02b2..0000000
--- a/source/library/service_status.js
+++ /dev/null
@@ -1,24 +0,0 @@
-export default (service) => {
- const acceptedServices = [
- "dns",
- "load-balancer",
- "cdn",
- "functions",
- "mysql-cluster",
- "mongodb-cluster",
- "redis-cluster",
- "elasticsearch-cluster",
- "git-connector",
- "job-runners",
- "container-registry",
- "kubernetes-cluster",
- "bare-metal-servers",
- "game-server-api",
- "anti-ddos-protection",
- "anti-cheat-api",
- ];
-
- if (acceptedServices.includes(service)) return true;
-
- return false;
-};