53bf52f191
Conflicts: lib/gitlab/git_access.rb spec/lib/gitlab/git_access_spec.rb
15 lines
No EOL
293 B
Ruby
15 lines
No EOL
293 B
Ruby
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 |