Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/ci/runner/graphql/shared/runner_toggle_active.mutation.graphql')
-rw-r--r--app/assets/javascripts/ci/runner/graphql/shared/runner_toggle_active.mutation.graphql12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/assets/javascripts/ci/runner/graphql/shared/runner_toggle_active.mutation.graphql b/app/assets/javascripts/ci/runner/graphql/shared/runner_toggle_active.mutation.graphql
deleted file mode 100644
index 9b15570dbc0..00000000000
--- a/app/assets/javascripts/ci/runner/graphql/shared/runner_toggle_active.mutation.graphql
+++ /dev/null
@@ -1,12 +0,0 @@
-# Mutation executed for the pause/resume button in the
-# runner list and details views.
-
-mutation runnerToggleActive($input: RunnerUpdateInput!) {
- runnerUpdate(input: $input) {
- runner {
- id
- active
- }
- errors
- }
-}