debian-mirror-gitlab/lib/gitlab/ci/jwt_v2.rb
2022-10-11 01:57:18 +05:30

17 lines
351 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
class JwtV2 < Jwt
private
def reserved_claims
super.merge(
iss: Settings.gitlab.base_url,
sub: "project_path:#{project.full_path}:ref_type:#{ref_type}:ref:#{source_ref}",
aud: Settings.gitlab.base_url
)
end
end
end
end