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
d7e8479e
Commit
d7e8479e
authored
Jul 04, 2016
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Keep around DiffNote position commits
parent
ddec2ed0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
app/models/diff_note.rb
app/models/diff_note.rb
+13
-0
No files found.
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 @@ class DiffNote < Note
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