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

mock_data.js « preferences « profile « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d07d5f565dca033e416362aa2bf70b9e27009ac9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const integrationViews = [
  {
    name: 'sourcegraph',
    help_link: 'http://foo.com/help',
    message: 'Click %{linkStart}Foo%{linkEnd}!',
    message_url: 'http://foo.com',
  },
  {
    name: 'gitpod',
    help_link: 'http://bar.com/help',
    message: 'Click %{linkStart}Bar%{linkEnd}!',
    message_url: 'http://bar.com',
  },
];

export const userFields = {
  foo_enabled: true,
};