Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Privacy
Imprint
Contact
Login methods
Sign in
Toggle navigation
Menu
Open sidebar
projects.thm.de
GitLab
Commits
d7e8479e
Commit
d7e8479e
authored
Jul 04, 2016
by
Douwe Maan
Browse files
Keep around DiffNote position commits
parent
ddec2ed0
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/models/diff_note.rb
View file @
d7e8479e
...
...
@@ -14,6 +14,7 @@ class DiffNote < Note
before_validation
:set_original_position
,
:update_position
,
on: :create
before_validation
:set_line_code
after_save
:keep_around_commits
class
<<
self
def
build_discussion_id
(
noteable_type
,
noteable_id
,
position
)
...
...
@@ -116,4 +117,16 @@ def positions_complete
errors
.
add
(
:position
,
"is invalid"
)
end
def
keep_around_commits
project
.
repository
.
keep_around
(
self
.
original_position
.
base_sha
)
project
.
repository
.
keep_around
(
self
.
original_position
.
start_sha
)
project
.
repository
.
keep_around
(
self
.
original_position
.
head_sha
)
if
self
.
position
!=
self
.
original_position
project
.
repository
.
keep_around
(
self
.
position
.
base_sha
)
project
.
repository
.
keep_around
(
self
.
position
.
start_sha
)
project
.
repository
.
keep_around
(
self
.
position
.
head_sha
)
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