Select Git revision
Forked from
GitLab.org / GitLab FOSS
35043 commits behind the upstream repository.
-
Dmitriy Zaporozhets authoredDmitriy Zaporozhets authored
git_access_status.rb 296 B
module Gitlab
class GitAccessStatus
attr_accessor :status, :message
alias_method :allowed?, :status
def initialize(status, message = '')
@status = status
@message = message
end
def to_json
{ status: @status, message: @message }.to_json
end
end
end