summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry
diff options
context:
space:
mode:
authorLukas Eipert <leipert@gitlab.com>2018-05-28 11:53:00 +0200
committerLukas Eipert <leipert@gitlab.com>2018-05-29 18:42:34 +0200
commitc98212e66383157e118ab1f7a498cc2f1c6f67a0 (patch)
tree4a9d67962652ae9d1d10691b5f1a20cc8adedc7b /app/assets/javascripts/registry
parent9a9f758d9121bcf24fa3fcee6dc724030467a6f3 (diff)
downloadgitlab-ce-c98212e66383157e118ab1f7a498cc2f1c6f67a0.tar.gz
fix `spaced-comment`
Diffstat (limited to 'app/assets/javascripts/registry')
-rw-r--r--app/assets/javascripts/registry/stores/actions.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/assets/javascripts/registry/stores/actions.js b/app/assets/javascripts/registry/stores/actions.js
index d40d195c225..c0de03373d8 100644
--- a/app/assets/javascripts/registry/stores/actions.js
+++ b/app/assets/javascripts/registry/stores/actions.js
@@ -29,9 +29,11 @@ export const fetchList = ({ commit }, { repo, page }) => {
});
};
-export const deleteRepo = ({ commit }, repo) => Vue.http.delete(repo.destroyPath); // eslint-disable-line no-unused-vars
+// eslint-disable-next-line no-unused-vars
+export const deleteRepo = ({ commit }, repo) => Vue.http.delete(repo.destroyPath);
-export const deleteRegistry = ({ commit }, image) => Vue.http.delete(image.destroyPath); // eslint-disable-line no-unused-vars
+// eslint-disable-next-line no-unused-vars
+export const deleteRegistry = ({ commit }, image) => Vue.http.delete(image.destroyPath);
export const setMainEndpoint = ({ commit }, data) => commit(types.SET_MAIN_ENDPOINT, data);
export const toggleLoading = ({ commit }) => commit(types.TOGGLE_MAIN_LOADING);