Skip to content

Commit

Permalink
Create users.json
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 9, 2024
1 parent 051032b commit 919e9bc
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions projects/pi-nexus-iam/data/users.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"users": [
{
"id": 1,
"username": "john_doe",
"password": "$2b$12$KhT5sG4jR6eV8aM9cLdOe.",
"email": "[email protected]",
"role": "admin",
"permissions": [
"create_user",
"read_user",
"update_user",
"delete_user",
"create_group",
"read_group",
"update_group",
"delete_group"
],
"groups": [
"admin",
"moderator"
],
"created_at": "2023-02-20T14:30:00.000Z",
"updated_at": "2023-02-20T14:30:00.000Z"
},
{
"id": 2,
"username": "jane_doe",
"password": "$2b$12$KhT5sG4jR6eV8aM9cLdOe.",
"email": "[email protected]",
"role": "moderator",
"permissions": [
"read_user",
"update_user",
"create_group",
"read_group",
"update_group"
],
"groups": [
"moderator"
],
"created_at": "2023-02-20T14:30:00.000Z",
"updated_at": "2023-02-20T14:30:00.000Z"
},
{
"id": 3,
"username": "bob_smith",
"password": "$2b$12$KhT5sG4jR6eV8aM9cLdOe.",
"email": "[email protected]",
"role": "user",
"permissions": [
"read_user",
"update_user"
],
"groups": [
"user"
],
"created_at": "2023-02-20T14:30:00.000Z",
"updated_at": "2023-02-20T14:30:00.000Z"
}
]
}

0 comments on commit 919e9bc

Please sign in to comment.