diff --git a/keeps/helpers/groups.rb b/keeps/helpers/groups.rb index 68faf0a37a21133b8535045e941597e1dfc58f08..f48b6870efd63d5c679a718c025da5e2d36df886 100644 --- a/keeps/helpers/groups.rb +++ b/keeps/helpers/groups.rb @@ -41,7 +41,7 @@ def fetch_groups "Failed to get group information with response code: #{response.code} and body:\n#{response.body}" end - Gitlab::Json.parse(response.body) + JSON.parse(response.body) # rubocop:disable Gitlab:Json -- We don't rely on GitLab internal classes end end end