-
Notifications
You must be signed in to change notification settings - Fork 11
/
user.ts
37 lines (31 loc) · 993 Bytes
/
user.ts
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
33
34
35
36
37
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* Copyright Oxide Computer Company
*/
import type { User } from '@oxide/api'
import type { Json } from './json-type'
import { defaultSilo } from './silo'
export const user1: Json<User> = {
id: '2e28576d-43e0-4e9e-9132-838a7b66f602',
display_name: 'Hannah Arendt',
silo_id: defaultSilo.id,
}
export const user2: Json<User> = {
id: '6937b251-013c-4f96-9afc-c62b1318dd0b',
display_name: 'Hans Jonas',
silo_id: defaultSilo.id,
}
export const user3: Json<User> = {
id: '4962021b-35e1-44a7-a40c-2264cd540615',
display_name: 'Jacob Klein',
silo_id: defaultSilo.id,
}
export const user4: Json<User> = {
id: '37c6aa2f-899e-4d56-bad1-93b5526a7151',
display_name: 'Simone de Beauvoir',
silo_id: defaultSilo.id,
}
export const users = [user1, user2, user3, user4]