##// END OF EJS Templates
scm: git: get "extra_report_last_commit" value from extra_info (#8365, #7047)....
Toshi MARUYAMA -
r5648:d21b35d32a73
parent child
Show More
@@ -39,7 +39,10 class Repository::Git < Repository
39 end
39 end
40
40
41 def extra_report_last_commit
41 def extra_report_last_commit
42 true
42 return false if extra_info.nil?
43 v = extra_info["extra_report_last_commit"]
44 return false if v.nil?
45 v.to_s != '0'
43 end
46 end
44
47
45 def supports_directory_revisions?
48 def supports_directory_revisions?
General Comments 0
You need to be logged in to leave comments. Login now