26 lines
613 B
Ruby
26 lines
613 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module GitAccessResult
|
||
|
class CustomAction
|
||
|
attr_reader :payload, :message
|
||
|
|
||
|
# Example of payload:
|
||
|
#
|
||
|
# {
|
||
|
# 'action' => 'geo_proxy_to_primary',
|
||
|
# 'data' => {
|
||
|
# 'api_endpoints' => %w{geo/proxy_git_push_ssh/info_refs geo/proxy_git_push_ssh/push},
|
||
|
# 'gl_username' => user.username,
|
||
|
# 'primary_repo' => geo_primary_http_url_to_repo(project_or_wiki)
|
||
|
# }
|
||
|
# }
|
||
|
#
|
||
|
def initialize(payload, message)
|
||
|
@payload = payload
|
||
|
@message = message
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|