scm: model: add method to switch revision graph support or not and set default false (#5501)

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7716 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-11-03 08:12:01 +00:00
parent e33ce24849
commit 15795c4385
1 changed files with 4 additions and 0 deletions

View File

@ -108,6 +108,10 @@ class Repository < ActiveRecord::Base
false
end
def supports_revision_graph?
false
end
def entry(path=nil, identifier=nil)
scm.entry(path, identifier)
end