22 lines
449 B
Plaintext
22 lines
449 B
Plaintext
exports[`#user.info should require authentication 1`] = `
|
|
Object {
|
|
"error": "authentication_required",
|
|
"message": "Authentication required",
|
|
"ok": false,
|
|
"status": 401
|
|
}
|
|
`;
|
|
|
|
exports[`#user.info should return known user 1`] = `
|
|
Object {
|
|
"data": Object {
|
|
"avatarUrl": "http://example.com/avatar.png",
|
|
"id": "86fde1d4-0050-428f-9f0b-0bf77f8bdf61",
|
|
"name": "User 1",
|
|
"username": "user1"
|
|
},
|
|
"ok": true,
|
|
"status": 200
|
|
}
|
|
`;
|