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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
b5adc096
Commit
b5adc096
authored
Jan 23, 2020
by
Florie Guibert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete description change history - Frontend
- Delete button icon on description diff
parent
adee3d99
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
67 additions
and
3 deletions
+67
-3
app/assets/javascripts/notes/mixins/description_version_history.js
...s/javascripts/notes/mixins/description_version_history.js
+2
-0
app/assets/javascripts/notes/stores/actions.js
app/assets/javascripts/notes/stores/actions.js
+19
-0
app/assets/javascripts/vue_shared/components/notes/system_note.vue
...s/javascripts/vue_shared/components/notes/system_note.vue
+15
-2
app/assets/stylesheets/pages/notes.scss
app/assets/stylesheets/pages/notes.scss
+8
-0
ee/app/assets/javascripts/notes/mixins/description_version_history.js
...s/javascripts/notes/mixins/description_version_history.js
+18
-1
ee/changelogs/unreleased/32894-sensitive-information-in-description-history-frontend.yml
...sensitive-information-in-description-history-frontend.yml
+5
-0
No files found.
app/assets/javascripts/notes/mixins/description_version_history.js
View file @
b5adc096
...
...
@@ -8,5 +8,7 @@ export default {
},
methods
:
{
toggleDescriptionVersion
()
{},
canDeleteDescriptionVersion
()
{},
deleteDescriptionVersion
()
{},
},
};
app/assets/javascripts/notes/stores/actions.js
View file @
b5adc096
...
...
@@ -509,5 +509,24 @@ export const fetchDescriptionVersion = (_, { endpoint, startingVersion }) => {
export
const
setCurrentDiscussionId
=
({
commit
},
discussionId
)
=>
commit
(
types
.
SET_CURRENT_DISCUSSION_ID
,
discussionId
);
export
const
softDeleteDescriptionVersion
=
({
commit
},
{
endpoint
,
startingVersion
})
=>
{
let
requestUrl
=
endpoint
;
if
(
startingVersion
)
{
requestUrl
=
mergeUrlParams
({
start_version_id
:
startingVersion
},
requestUrl
);
}
return
axios
.
delete
(
requestUrl
)
.
then
(
res
=>
{
// Invalidate lastFatechedAt to trigger refetch on next page refresh
commit
(
types
.
SET_LAST_FETCHED_AT
,
null
);
return
res
.
data
;
})
.
catch
(()
=>
{
Flash
(
__
(
'
Something went wrong while deleting description changes. Please try again.
'
));
});
};
// prevent babel-plugin-rewire from generating an invalid default during karma tests
export
default
()
=>
{};
app/assets/javascripts/vue_shared/components/notes/system_note.vue
View file @
b5adc096
...
...
@@ -18,7 +18,7 @@
*/
import
$
from
'
jquery
'
;
import
{
mapGetters
,
mapActions
}
from
'
vuex
'
;
import
{
GlSkeletonLoading
}
from
'
@gitlab/ui
'
;
import
{
GlSkeletonLoading
,
GlTooltipDirective
}
from
'
@gitlab/ui
'
;
import
descriptionVersionHistoryMixin
from
'
ee_else_ce/notes/mixins/description_version_history
'
;
import
noteHeader
from
'
~/notes/components/note_header.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
...
...
@@ -36,6 +36,9 @@ export default {
TimelineEntryItem
,
GlSkeletonLoading
,
},
directives
:
{
GlTooltip
:
GlTooltipDirective
,
},
mixins
:
[
descriptionVersionHistoryMixin
],
props
:
{
note
:
{
...
...
@@ -80,7 +83,7 @@ export default {
initMRPopovers
(
this
.
$el
.
querySelectorAll
(
'
.gfm-merge_request
'
));
},
methods
:
{
...
mapActions
([
'
fetchDescriptionVersion
'
]),
...
mapActions
([
'
fetchDescriptionVersion
'
,
'
softDeleteDescriptionVersion
'
]),
},
};
</
script
>
...
...
@@ -122,6 +125,16 @@ export default {
<gl-skeleton-loading
/>
</pre>
<pre
v-else
class=
"wrapper mt-2"
v-html=
"descriptionVersion"
></pre>
<button
v-if=
"canDeleteDescriptionVersion"
v-gl-tooltip
type=
"button"
title=
"Remove description history"
class=
"btn btn-transparent delete-description-history"
@
click=
"deleteDescriptionVersion"
>
<icon
name=
"remove"
/>
</button>
</div>
</div>
</div>
...
...
app/assets/stylesheets/pages/notes.scss
View file @
b5adc096
...
...
@@ -311,6 +311,14 @@ $note-form-margin-left: 72px;
overflow
:
hidden
;
.description-version
{
position
:
relative
;
.btn.delete-description-history
{
position
:
absolute
;
top
:
18px
;
right
:
0
;
}
pre
{
max-height
:
$dropdown-max-height-lg
;
white-space
:
pre-wrap
;
...
...
ee/app/assets/javascripts/notes/mixins/description_version_history.js
View file @
b5adc096
import
{
s__
}
from
'
~/locale
'
;
export
default
{
data
()
{
return
{
...
...
@@ -8,7 +10,14 @@ export default {
},
computed
:
{
canSeeDescriptionVersion
()
{
return
Boolean
(
this
.
note
.
description_diff_path
&&
this
.
note
.
description_version_id
);
return
Boolean
(
this
.
note
.
description_diff_path
&&
this
.
note
.
description_version_id
&&
!
this
.
note
.
description_version_deleted
,
);
},
canDeleteDescriptionVersion
()
{
return
this
.
note
.
can_delete_description_version
;
},
shouldShowDescriptionVersion
()
{
return
this
.
canSeeDescriptionVersion
&&
this
.
isDescriptionVersionExpanded
;
...
...
@@ -34,5 +43,13 @@ export default {
this
.
descriptionVersion
=
diff
;
});
},
deleteDescriptionVersion
()
{
const
endpoint
=
this
.
note
.
delete_description_version_path
;
const
startingVersion
=
this
.
note
.
start_description_version_id
;
return
this
.
softDeleteDescriptionVersion
({
endpoint
,
startingVersion
}).
then
(()
=>
{
this
.
descriptionVersion
=
s__
(
'
Deleted
'
);
});
},
},
};
ee/changelogs/unreleased/32894-sensitive-information-in-description-history-frontend.yml
0 → 100644
View file @
b5adc096
---
title
:
Delete description change history - Frontend
merge_request
:
23568
author
:
type
:
changed
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