2012-02-15 21:02:33 +01:00
|
|
|
class ProtectedBranch < ActiveRecord::Base
|
2012-08-28 23:04:06 +02:00
|
|
|
include GitHost
|
|
|
|
|
2012-09-26 20:17:17 +02:00
|
|
|
attr_accessible :name
|
|
|
|
|
2012-02-15 21:02:33 +01:00
|
|
|
belongs_to :project
|
|
|
|
validates_presence_of :project_id
|
|
|
|
validates_presence_of :name
|
|
|
|
|
|
|
|
after_save :update_repository
|
|
|
|
after_destroy :update_repository
|
|
|
|
|
|
|
|
def update_repository
|
2012-08-28 23:04:06 +02:00
|
|
|
git_host.update_repository(project)
|
2012-02-15 21:02:33 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def commit
|
|
|
|
project.commit(self.name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: protected_branches
|
|
|
|
#
|
2012-06-26 20:23:09 +02:00
|
|
|
# id :integer(4) not null, primary key
|
|
|
|
# project_id :integer(4) not null
|
2012-02-15 21:02:33 +01:00
|
|
|
# name :string(255) not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|