summaryrefslogtreecommitdiff
path: root/spec/frontend/profile/preferences/mock_data.js
blob: 91cfdfadc78f19895264e5a5094fe7fffd72e923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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,
};

export const bodyClasses = 'ui-light-indigo ui-light gl-dark';

export const themes = [
  { id: 1, css_class: 'foo' },
  { id: 2, css_class: 'bar' },
  { id: 3, css_class: 'gl-dark' },
];

export const lightModeThemeId1 = 1;

export const lightModeThemeId2 = 2;

export const darkModeThemeId = 3;