-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
73 lines (72 loc) · 2.33 KB
/
Copy pathdata.js
File metadata and controls
73 lines (72 loc) · 2.33 KB
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
const DEFAULT_DATA = {
administrator: {
name: 'Admin',
pw: 'secret',
is_author: false,
is_admin: true,
private_snippet: 'My password is secret. Get it?',
web_site: 'https://www.google.com/contact/',
},
onehalf: {
name: 'onehalf',
pw: 'virus.dos',
is_author: true,
is_admin: true,
private_snippet: 'Dis is one half.',
web_site: 'https://onehalf.dev/',
color: 'purple',
snippets: [
'Why are you <i>still</i> using Windows 98?! What is wrong with you?! Stop buying computers from thrift stores, man!'
],
},
basil: {
name: 'Basil',
pw: 'catgirl',
is_author: true,
is_admin: false,
private_snippet: 'Seems kinda unwise to connect myself to something that has so many security holes..',
web_site: 'https://basil.cafe/',
color: 'green',
snippets: [
'But wait! Don\'t breathe yet!'
],
},
cheddar: {
name: 'Cheddar Mac',
pw: 'orange',
is_author: true,
is_admin: false,
private_snippet: 'My SSN is <a href="https://www.google.com/search?q=078-05-1120">078-05-1120</a>.',
web_site: 'https://images.google.com/?q=cheddar+cheese',
color: 'blue',
snippets: [
'Gruyere is the cheesiest application on the web.',
'I wonder if there are any security holes in this....'
],
},
sardo: {
name: 'Miss Sardo',
pw: 'odras',
is_author: true,
is_admin: false,
private_snippet: 'I hate my brother Romano.',
web_site: 'https://www.google.com/search?q="pecorino+sardo"',
color: 'red',
snippets: [],
},
brie: {
name: 'Brie',
pw: 'briebrie',
is_author: true,
is_admin: false,
private_snippet: 'I use the same password for all my accounts.',
web_site: 'https://news.google.com/news/search?q=brie',
color: 'red; text-decoration:underline',
snippets: [
'Brie is the queen of the cheeses<span style="color:red">!!!</span>'
],
},
};
// Export the DEFAULT_DATA object if using modules
// export default DEFAULT_DATA;
const _db = DEFAULT_DATA;