summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/tags/remove_tag.js
blob: 7b95560df7b73d446e5a7b090cb6f1fee62a084c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import initConfirmModal from '~/confirm_modal';
import createFlash from '~/flash';
import axios from '~/lib/utils/axios_utils';

export const initRemoveTag = ({ onDelete = () => {} }) => {
  return initConfirmModal({
    handleSubmit: (path = '') =>
      axios
        .delete(path)
        .then(() => onDelete(path))
        .catch(({ response: { data } }) => {
          const { message } = data;
          createFlash({ message });
        }),
  });
};