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

mock_data.js « namespace_select « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9d96672e8520b242a6669156b6ea105d9cb3d81 (plain)
1
2
3
4
5
6
7
8
9
10
11
export const group = [
  { id: 1, name: 'Group 1', humanName: 'Group 1' },
  { id: 2, name: 'Subgroup 1', humanName: 'Group 1 / Subgroup 1' },
];

export const user = [{ id: 3, name: 'User namespace 1', humanName: 'User namespace 1' }];

export const namespaces = {
  group,
  user,
};