Tidied people list, now displaying joined at date
This commit is contained in:
Tom Moor
2018-06-20 22:10:03 -07:00
parent b9e0668d7d
commit fa4453a476
9 changed files with 35 additions and 17 deletions

View File

@@ -3,6 +3,7 @@
exports[`presents a user 1`] = `
Object {
"avatarUrl": "http://example.com/avatar.png",
"createdAt": undefined,
"id": "123",
"name": "Test User",
"username": "testuser",
@@ -12,6 +13,7 @@ Object {
exports[`presents a user without slack data 1`] = `
Object {
"avatarUrl": null,
"createdAt": undefined,
"id": "123",
"name": "Test User",
"username": "testuser",

View File

@@ -21,6 +21,7 @@ export default (
): UserPresentation => {
const userData = {};
userData.id = user.id;
userData.createdAt = user.createdAt;
userData.username = user.username;
userData.name = user.name;
userData.avatarUrl =