summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/mixins/draft_comments.js
blob: b6c9b132aebedb450e1502933310cef3eb92b8be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export default {
  computed: {
    shouldRenderDraftRow: () => () => false,
    shouldRenderParallelDraftRow: () => () => false,
    draftForLine: () => () => ({}),
    imageDiscussions() {
      return this.diffFile.discussions;
    },
    hasParallelDraftLeft: () => () => false,
    hasParallelDraftRight: () => () => false,
  },
};