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

diff_line_note_form.js « mixins « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 188556e892116b1091c168e3c3d9a5e57c0dfde7 (plain)
1
2
3
4
5
6
7
8
9
10
export default {
  computed: {
    draftForDiscussion: () => () => ({}),
  },
  methods: {
    showDraft: () => false,
    addReplyToReview: () => {},
    addToReview: () => {},
  },
};