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
Jérome Perrin
gitlab-ce
Commits
17ab745e
Commit
17ab745e
authored
Jun 20, 2016
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Timeless helper module to prevent updated_at from being updated
parent
a9fa45f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
app/models/merge_request.rb
app/models/merge_request.rb
+1
-6
lib/gitlab/timeless.rb
lib/gitlab/timeless.rb
+16
-0
No files found.
app/models/merge_request.rb
View file @
17ab745e
...
...
@@ -85,12 +85,7 @@ class MergeRequest < ActiveRecord::Base
state
:cannot_be_merged
around_transition
do
|
merge_request
,
transition
,
block
|
merge_request
.
record_timestamps
=
false
begin
block
.
call
ensure
merge_request
.
record_timestamps
=
true
end
Gitlab
::
Timeless
.
timeless
(
merge_request
,
&
block
)
end
end
...
...
lib/gitlab/timeless.rb
0 → 100644
View file @
17ab745e
module
Gitlab
module
Timeless
def
self
.
timeless
(
model
,
&
block
)
original_record_timestamps
=
model
.
record_timestamps
model
.
record_timestamps
=
false
if
block
.
arity
.
abs
==
1
block
.
call
(
model
)
else
block
.
call
end
ensure
model
.
record_timestamps
=
original_record_timestamps
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