summaryrefslogtreecommitdiff
path: root/lib/gitlab/git_access_status.rb
blob: 3d451ecebee0480a78b21cc79378ad1932e35ebc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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