forked from tolustar/cerbos-authorization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.js
46 lines (45 loc) · 793 Bytes
/
db.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
const db = {
users: [
{
id: 1,
name: "John Doe",
role: "member",
blocked: false,
},
{
id: 2,
name: "Snow Mountain",
role: "member",
blocked: false,
},
{
id: 3,
name: "David Woods",
role: "member",
blocked: true,
},
{
id: 4,
name: "Maria Waters",
role: "moderator",
blocked: false,
},
{
id: 5,
name: "Grace Stones",
role: "moderator",
blocked: true,
},
],
posts: [
{
id: 366283,
title: "Introduction to Cerbos",
content:
"In this article you will learn how to integrate Cerbos authorization into an existing application",
userId: 1,
flagged: false,
},
],
};
module.exports = db;