-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathUserInfoMocks.js
144 lines (140 loc) · 3.6 KB
/
UserInfoMocks.js
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
export const GROUP_ID = "1448e0f77d794bc9965dea4bf8eddecb";
export const ipcdevUserInfo = {
ipcdev: {
institution: "iPlant Collaborative",
description: "Ipc Dev",
email: "[email protected]",
first_name: "Ipc",
name: "Ipc Dev",
id: "ipcdev",
last_name: "Dev",
source_id: "ldap",
display_name: "Ipc Dev",
},
};
export const userInfoResp = {
batman: {
email: "[email protected]",
name: "Bruce Wayne",
last_name: "Wayne",
description: "He is the night",
id: "batman",
institution: "The Night",
first_name: "Bruce",
source_id: "ldap",
},
robin: {
email: "[email protected]",
name: "Richard Grayson",
last_name: "Grayson",
description: "Sidekick",
id: "robin",
institution: "The Night",
first_name: "Richard",
source_id: "ldap",
},
alfred: {
email: "[email protected]",
name: "Alfred Pennyworth",
last_name: "Pennyworth",
description: "Unappreciated",
id: "alfred",
institution: "Bat Cave",
first_name: "Alfred",
source_id: "ldap",
},
catwoman: {
email: "[email protected]",
name: "Selina Kyle",
last_name: "Kyle",
description: "Sneaky",
id: "catwoman",
institution: "Catnip",
first_name: "Selina",
source_id: "ldap",
},
joker: {
email: "[email protected]",
name: "Jack Napier",
last_name: "Napier",
description: "Insane",
id: "joker",
institution: "Madness",
first_name: "Jack",
source_id: "ldap",
},
penguin: {
email: "[email protected]",
name: "Oswald Cobblepot",
last_name: "Cobblepot",
description: "Waddler",
id: "penguin",
institution: "Penguins Inc",
first_name: "Oswald",
source_id: "ldap",
},
freeze: {
email: "[email protected]",
name: "Victor Fries",
last_name: "Fries",
description: "Cold",
id: "freeze",
institution: "Ice To Meet You",
first_name: "Victor",
source_id: "ldap",
},
[GROUP_ID]: {
name: "iplant:de:qa:teams:freeze:gotham_gang",
description: "Gotham Baddies",
id: GROUP_ID,
source_id: "g:gsa",
},
};
export const collabListMemberResp = {
members: [
{
source_id: "ldap",
id: "superman",
},
{
source_id: "ldap",
id: "llane",
},
{
source_id: "ldap",
id: "wonderwoman",
},
],
};
export const userInfoMemberResp = {
superman: {
email: "[email protected]",
name: "Clark Kent",
last_name: "Kent",
description: "It's not an S",
id: "superman",
institution: "Justice League",
first_name: "Clark",
source_id: "ldap",
},
llane: {
email: "[email protected]",
name: "Lois Lane",
last_name: "Lane",
description: "A Pulitzer prize winning reporter",
id: "llane",
institution: "Daily Planet",
first_name: "Lois",
source_id: "ldap",
},
wonderwoman: {
email: "[email protected]",
name: "Diana Prince",
last_name: "Prince",
description: "Amazonian princess",
id: "wonderwoman",
institution: "Justice League",
first_name: "Diana",
source_id: "ldap",
},
};