2012-11-19 13:24:05 -05: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 15:02:33 -05:00
|
|
|
class ProtectedBranch < ActiveRecord::Base
|
2012-08-28 17:04:06 -04:00
|
|
|
include GitHost
|
|
|
|
|
2012-09-26 14:17:17 -04:00
|
|
|
attr_accessible :name
|
|
|
|
|
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
|
|
|
|
|
|
|
after_save :update_repository
|
|
|
|
after_destroy :update_repository
|
|
|
|
|
|
|
|
def update_repository
|
2012-08-28 17:04:06 -04:00
|
|
|
git_host.update_repository(project)
|
2012-02-15 15:02:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def commit
|
|
|
|
project.commit(self.name)
|
|
|
|
end
|
|
|
|
end
|