Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runners_token_prefixable.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99bbbece7c775773c3998ec54b904b3f9aa646ad (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module RunnersTokenPrefixable
  # Prefix for runners_token which can be used to invalidate existing tokens.
  # The value chosen here is GR (for Gitlab Runner) combined with the rotation
  # date (20220225) decimal to hex encoded.
  RUNNERS_TOKEN_PREFIX = 'GR1348941'
end