2012-02-15 15:02:33 -05:00
|
|
|
class ProtectedBranch < ActiveRecord::Base
|
2013-03-21 15:01:14 -04:00
|
|
|
include Gitlab::ShellAdapter
|
2012-08-28 17:04:06 -04:00
|
|
|
|
2012-02-15 15:02:33 -05:00
|
|
|
belongs_to :project
|
2012-10-08 20:10:04 -04:00
|
|
|
validates :name, presence: true
|
|
|
|
validates :project, presence: true
|
2012-02-15 15:02:33 -05:00
|
|
|
|
|
|
|
def commit
|
2015-04-21 09:13:40 -04:00
|
|
|
project.commit(self.name)
|
2012-02-15 15:02:33 -05:00
|
|
|
end
|
|
|
|
end
|