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

user_data_mock.js « sidebar « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df90a65f6f9927c3fe454f2dfa91d1b341ac8320 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { TEST_HOST } from 'helpers/test_constants';

export default () => ({
  avatar_url: `${TEST_HOST}/avatar/root.png`,
  id: 1,
  name: 'Root',
  state: 'active',
  username: 'root',
  web_url: `${TEST_HOST}/root`,
  can_merge: true,
});