summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/error_tracking/store/actions.js
blob: a58ecd78632c4887631e9b55f57eba13e30aa8fe (plain)
1
2
3
4
5
6
7
8
9
10
11
import Service from '../services';
import * as types from './mutation_types';

export function getErrorList({ commit }, url) {
  Service.getErrorList(url)
    .then(( { data }) => {
      commit(types.ADD_ERRORS, data);
    });
}

export default () => {};