gitlab-org--gitlab-foss/app/models/protected_branch.rb
2016-06-03 11:10:17 +02:00

11 lines
222 B
Ruby

class ProtectedBranch < ActiveRecord::Base
include Gitlab::ShellAdapter
belongs_to :project
validates :name, presence: true
validates :project, presence: true
def commit
project.commit(self.name)
end
end