gitlabhq/app/models/repository.rb

14 lines
191 B
Ruby
Raw Normal View History

2011-12-04 21:19:49 +01:00
require File.join(Rails.root, "lib", "gitlabhq", "git_host")
2011-11-10 23:51:19 +01:00
class Repository
attr_accessor :project
def self.default_ref
"master"
end
def self.access_options
2012-02-16 08:03:55 +01:00
{}
end
2011-11-10 23:51:19 +01:00
end