2012-11-19 21:24:05 +03:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: protected_branches
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# project_id :integer not null
|
|
|
|
# name :string(255) not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
2012-02-15 22:02:33 +02:00
|
|
|
class ProtectedBranch < ActiveRecord::Base
|
2013-01-03 09:06:07 +02:00
|
|
|
include Gitolited
|
2012-08-29 00:04:06 +03:00
|
|
|
|
2012-09-26 11:17:17 -07:00
|
|
|
attr_accessible :name
|
|
|
|
|
2012-02-15 22:02:33 +02:00
|
|
|
belongs_to :project
|
2012-10-09 04:10:04 +04:00
|
|
|
validates :name, presence: true
|
|
|
|
validates :project, presence: true
|
2012-02-15 22:02:33 +02:00
|
|
|
|
|
|
|
after_save :update_repository
|
|
|
|
after_destroy :update_repository
|
|
|
|
|
|
|
|
def update_repository
|
2013-01-03 09:06:07 +02:00
|
|
|
gitolite.update_repository(project)
|
2012-02-15 22:02:33 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def commit
|
2013-01-04 08:43:25 +02:00
|
|
|
project.repository.commit(self.name)
|
2012-02-15 22:02:33 +02:00
|
|
|
end
|
|
|
|
end
|