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

update.js « mixins « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31b29de580c3407a2e45bd96a8801e6a06f7b7ea (plain)
1
2
3
4
5
6
7
8
9
import eventHub from '../event_hub';

export default {
  methods: {
    updateIssuable() {
      eventHub.$emit('update.issuable');
    },
  },
};