gitlabhq/app/models/repository.rb

14 lines
191 B
Ruby
Raw Normal View History

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