Files
coder/cli/testdata/coder_users_list_--output_json.golden
2024-12-20 00:06:22 +02:00

42 lines
1021 B
Plaintext

[
{
"id": "==========[first user ID]===========",
"username": "testuser",
"avatar_url": "",
"name": "Test User",
"email": "testuser@coder.com",
"created_at": "====[timestamp]=====",
"updated_at": "====[timestamp]=====",
"last_seen_at": "====[timestamp]=====",
"status": "active",
"login_type": "password",
"theme_preference": "",
"organization_ids": [
"===========[first org ID]==========="
],
"roles": [
{
"name": "owner",
"display_name": "Owner"
}
]
},
{
"id": "==========[second user ID]==========",
"username": "testuser2",
"avatar_url": "",
"name": "",
"email": "testuser2@coder.com",
"created_at": "====[timestamp]=====",
"updated_at": "====[timestamp]=====",
"last_seen_at": "====[timestamp]=====",
"status": "dormant",
"login_type": "password",
"theme_preference": "",
"organization_ids": [
"===========[first org ID]==========="
],
"roles": []
}
]