gitlabhq/app/models/protected_branch.rb
2012-09-27 02:05:53 -07:00

31 lines
622 B
Ruby

class ProtectedBranch < ActiveRecord::Base
include GitHost
attr_accessible :name
belongs_to :project
validates_presence_of :name, :project_id
after_save :update_repository
after_destroy :update_repository
def update_repository
git_host.update_repository(project)
end
def commit
project.commit(self.name)
end
end
# == 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
#