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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2019-02-28 13:55:13 +0300
committerPhil Hughes <me@iamphill.com>2019-02-28 13:55:13 +0300
commit573dd592b0eebdec8c75506d5a4ebbb66c9a1ab4 (patch)
tree975221cd9d3343aa5dcc6588932e1b2990f1ae97 /app/assets/javascripts/notes/mixins/diff_line_note_form.js
parentf27536950fcc53bd4e4a74e323bcc88eb2ecb3a2 (diff)
CE port of noteable-discussion-ee-differences
Diffstat (limited to 'app/assets/javascripts/notes/mixins/diff_line_note_form.js')
-rw-r--r--app/assets/javascripts/notes/mixins/diff_line_note_form.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/javascripts/notes/mixins/diff_line_note_form.js b/app/assets/javascripts/notes/mixins/diff_line_note_form.js
new file mode 100644
index 00000000000..188556e8921
--- /dev/null
+++ b/app/assets/javascripts/notes/mixins/diff_line_note_form.js
@@ -0,0 +1,10 @@
+export default {
+ computed: {
+ draftForDiscussion: () => () => ({}),
+ },
+ methods: {
+ showDraft: () => false,
+ addReplyToReview: () => {},
+ addToReview: () => {},
+ },
+};