Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
c17b7afa
Commit
c17b7afa
authored
Apr 03, 2019
by
Heinrich Lee Yu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove reply_to_individual_notes feature flag
Also removes specs related to the flag
parent
645303c7
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
36 additions
and
146 deletions
+36
-146
app/assets/javascripts/notes/components/note_actions.vue
app/assets/javascripts/notes/components/note_actions.vue
+1
-4
app/controllers/concerns/issuable_actions.rb
app/controllers/concerns/issuable_actions.rb
+0
-3
app/models/individual_note_discussion.rb
app/models/individual_note_discussion.rb
+1
-1
spec/features/merge_request/user_posts_notes_spec.rb
spec/features/merge_request/user_posts_notes_spec.rb
+1
-12
spec/javascripts/notes/components/note_actions_spec.js
spec/javascripts/notes/components/note_actions_spec.js
+14
-68
spec/services/notes/build_service_spec.rb
spec/services/notes/build_service_spec.rb
+9
-27
spec/services/notes/create_service_spec.rb
spec/services/notes/create_service_spec.rb
+10
-31
No files found.
app/assets/javascripts/notes/components/note_actions.vue
View file @
c17b7afa
...
...
@@ -86,9 +86,6 @@ export default {
},
computed
:
{
...
mapGetters
([
'
getUserDataByProp
'
]),
showReplyButton
()
{
return
gon
.
features
&&
gon
.
features
.
replyToIndividualNotes
&&
this
.
showReply
;
},
shouldShowActionsDropdown
()
{
return
this
.
currentUserId
&&
(
this
.
canEdit
||
this
.
canReportAsAbuse
);
},
...
...
@@ -167,7 +164,7 @@ export default {
</a>
</div>
<reply-button
v-if=
"showReply
Button
"
v-if=
"showReply"
ref=
"replyButton"
class=
"js-reply-button"
@
startReplying=
"$emit('startReplying')"
...
...
app/controllers/concerns/issuable_actions.rb
View file @
c17b7afa
...
...
@@ -7,9 +7,6 @@ module IssuableActions
included
do
before_action
:authorize_destroy_issuable!
,
only: :destroy
before_action
:authorize_admin_issuable!
,
only: :bulk_update
before_action
only: :show
do
push_frontend_feature_flag
(
:reply_to_individual_notes
,
default_enabled:
true
)
end
end
def
permitted_keys
...
...
app/models/individual_note_discussion.rb
View file @
c17b7afa
...
...
@@ -14,7 +14,7 @@ class IndividualNoteDiscussion < Discussion
end
def
can_convert_to_discussion?
noteable
.
supports_replying_to_individual_notes?
&&
Feature
.
enabled?
(
:reply_to_individual_notes
,
default_enabled:
true
)
noteable
.
supports_replying_to_individual_notes?
end
def
convert_to_discussion!
(
save:
false
)
...
...
spec/features/merge_request/user_posts_notes_spec.rb
View file @
c17b7afa
...
...
@@ -67,18 +67,7 @@ describe 'Merge request > User posts notes', :js do
end
end
describe
'when reply_to_individual_notes feature flag is disabled'
do
before
do
stub_feature_flags
(
reply_to_individual_notes:
false
)
visit
project_merge_request_path
(
project
,
merge_request
)
end
it
'does not show a reply button'
do
expect
(
page
).
to
have_no_selector
(
'.js-reply-button'
)
end
end
describe
'when reply_to_individual_notes feature flag is not set'
do
describe
'reply button'
do
before
do
visit
project_merge_request_path
(
project
,
merge_request
)
end
...
...
spec/javascripts/notes/components/note_actions_spec.js
View file @
c17b7afa
...
...
@@ -128,17 +128,6 @@ describe('noteActions', () => {
});
});
describe
(
'
with feature flag replyToIndividualNotes enabled
'
,
()
=>
{
beforeEach
(()
=>
{
gon
.
features
=
{
replyToIndividualNotes
:
true
,
};
});
afterEach
(()
=>
{
gon
.
features
=
{};
});
describe
(
'
for showReply = true
'
,
()
=>
{
beforeEach
(()
=>
{
wrapper
=
shallowMountNoteActions
({
...
...
@@ -168,47 +157,4 @@ describe('noteActions', () => {
expect
(
replyButton
.
exists
()).
toBe
(
false
);
});
});
});
describe
(
'
with feature flag replyToIndividualNotes disabled
'
,
()
=>
{
beforeEach
(()
=>
{
gon
.
features
=
{
replyToIndividualNotes
:
false
,
};
});
afterEach
(()
=>
{
gon
.
features
=
{};
});
describe
(
'
for showReply = true
'
,
()
=>
{
beforeEach
(()
=>
{
wrapper
=
shallowMountNoteActions
({
...
props
,
showReply
:
true
,
});
});
it
(
'
does not show a reply button
'
,
()
=>
{
const
replyButton
=
wrapper
.
find
({
ref
:
'
replyButton
'
});
expect
(
replyButton
.
exists
()).
toBe
(
false
);
});
});
describe
(
'
for showReply = false
'
,
()
=>
{
beforeEach
(()
=>
{
wrapper
=
shallowMountNoteActions
({
...
props
,
showReply
:
false
,
});
});
it
(
'
does not show a reply button
'
,
()
=>
{
const
replyButton
=
wrapper
.
find
({
ref
:
'
replyButton
'
});
expect
(
replyButton
.
exists
()).
toBe
(
false
);
});
});
});
});
spec/services/notes/build_service_spec.rb
View file @
c17b7afa
...
...
@@ -128,27 +128,6 @@ describe Notes::BuildService do
subject
{
described_class
.
new
(
project
,
author
,
note:
'Test'
,
in_reply_to_discussion_id:
note
.
discussion_id
).
execute
}
shared_examples
'an individual note reply'
do
it
'builds another individual note'
do
expect
(
subject
).
to
be_valid
expect
(
subject
).
to
be_a
(
Note
)
expect
(
subject
.
discussion_id
).
not_to
eq
(
note
.
discussion_id
)
end
end
context
'when reply_to_individual_notes is disabled'
do
before
do
stub_feature_flags
(
reply_to_individual_notes:
false
)
end
it_behaves_like
'an individual note reply'
end
context
'when reply_to_individual_notes is enabled'
do
before
do
stub_feature_flags
(
reply_to_individual_notes:
true
)
end
it
'sets the note up to be in reply to that note'
do
expect
(
subject
).
to
be_valid
expect
(
subject
).
to
be_a
(
DiscussionNote
)
...
...
@@ -158,7 +137,10 @@ describe Notes::BuildService do
context
'when noteable does not support replies'
do
let
(
:note
)
{
create
(
:note_on_commit
)
}
it_behaves_like
'an individual note reply'
it
'builds another individual note'
do
expect
(
subject
).
to
be_valid
expect
(
subject
).
to
be_a
(
Note
)
expect
(
subject
.
discussion_id
).
not_to
eq
(
note
.
discussion_id
)
end
end
end
...
...
spec/services/notes/create_service_spec.rb
View file @
c17b7afa
...
...
@@ -298,26 +298,6 @@ describe Notes::CreateService do
subject
{
described_class
.
new
(
project
,
user
,
reply_opts
).
execute
}
context
'when reply_to_individual_notes is disabled'
do
before
do
stub_feature_flags
(
reply_to_individual_notes:
false
)
end
it
'creates an individual note'
do
expect
(
subject
.
type
).
to
eq
(
nil
)
expect
(
subject
.
discussion_id
).
not_to
eq
(
existing_note
.
discussion_id
)
end
it
'does not convert existing note'
do
expect
{
subject
}.
not_to
change
{
existing_note
.
reload
.
type
}
end
end
context
'when reply_to_individual_notes is enabled'
do
before
do
stub_feature_flags
(
reply_to_individual_notes:
true
)
end
it
'creates a DiscussionNote in reply to existing note'
do
expect
(
subject
).
to
be_a
(
DiscussionNote
)
expect
(
subject
.
discussion_id
).
to
eq
(
existing_note
.
discussion_id
)
...
...
@@ -335,5 +315,4 @@ describe Notes::CreateService do
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment