Use actual activated at value for license type
Prior to this change, the value for activated at in the GraphQL Types::Admin::CloudLicenses::LicenseType class was using created at since the field didn't exist before. Now that the field exists in the Gitlab::License we can use the actual value and implement a fallback to created at for older licenses.
Showing
... | @@ -298,7 +298,7 @@ gem 'gon', '~> 6.4.0' | ... | @@ -298,7 +298,7 @@ gem 'gon', '~> 6.4.0' |
gem 'request_store', '~> 1.5' | gem 'request_store', '~> 1.5' | ||
gem 'base32', '~> 0.3.0' | gem 'base32', '~> 0.3.0' | ||
gem "gitlab-license", "~> 1.3" | gem "gitlab-license", "~> 1.4" | ||
# Protect against bruteforcing | # Protect against bruteforcing | ||
gem 'rack-attack', '~> 6.3.0' | gem 'rack-attack', '~> 6.3.0' | ||
... | ... |
Please register or sign in to comment