Commit 831bad50 authored by Savas Vedova's avatar Savas Vedova

Merge branch 'remove-vendor-from-mock-data' into 'master'

Remove vendor name from mock data

See merge request gitlab-org/gitlab!78123
parents e7abe1bd 265f1590
...@@ -5,16 +5,16 @@ export const textProviderIds = [101, 102]; ...@@ -5,16 +5,16 @@ export const textProviderIds = [101, 102];
export const securityTrainingProviders = [ export const securityTrainingProviders = [
{ {
id: textProviderIds[0], id: textProviderIds[0],
name: 'Kontra', name: 'Vendor Name 1',
description: 'Interactive developer security education.', description: 'Interactive developer security education',
url: 'https://application.security/', url: 'https://www.example.org/security/training',
isEnabled: false, isEnabled: false,
}, },
{ {
id: textProviderIds[1], id: textProviderIds[1],
name: 'SecureCodeWarrior', name: 'Vendor Name 2',
description: 'Security training with guide and learning pathways.', description: 'Security training with guide and learning pathways.',
url: 'https://www.securecodewarrior.com/', url: 'https://www.vendornametwo.com/',
isEnabled: true, isEnabled: true,
}, },
]; ];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment