2014-09-02 18:07:02 +05:30
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: protected_branches
|
|
|
|
#
|
2015-04-26 12:48:37 +05:30
|
|
|
# id :integer not null, primary key
|
|
|
|
# project_id :integer not null
|
|
|
|
# name :string(255) not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# developers_can_push :boolean default(FALSE), not null
|
2014-09-02 18:07:02 +05:30
|
|
|
#
|
|
|
|
|
|
|
|
class ProtectedBranch < ActiveRecord::Base
|
|
|
|
include Gitlab::ShellAdapter
|
|
|
|
|
|
|
|
belongs_to :project
|
|
|
|
validates :name, presence: true
|
|
|
|
validates :project, presence: true
|
|
|
|
|
|
|
|
def commit
|
2015-09-11 14:41:01 +05:30
|
|
|
project.commit(self.name)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|