Skip to content

Commit

Permalink
chore: Update all_users.json to include last_active_at & last_sign_in…
Browse files Browse the repository at this point in the history
…_at fields

- last_sign_in_at stores the last time of a user's successful sign-in
- last_active_at stores the latest date with session activity with day precision
  • Loading branch information
georgepsarakis committed Dec 7, 2023
1 parent 92e4c28 commit 25c2c18
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions test/fixtures/all_users.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@
"external_accounts": [],
"public_metadata": {},
"private_metadata": {},
"created_at": 1621421265,
"updated_at": 1621421326
"created_at": 1621421265000,
"updated_at": 1621421326000,
"last_sign_in_at": null,
"last_active_at": 1700690400000
},
{
"id": "user_1skey1AXIL5UvH5B6XdMWawkEsX",
Expand Down Expand Up @@ -78,7 +80,9 @@
"external_accounts": [],
"public_metadata": {},
"private_metadata": {},
"created_at": 1621421265,
"updated_at": 1621421326
"created_at": 1621421265123,
"updated_at": 1621421326678,
"last_sign_in_at": 1701677564411,
"last_active_at": 1701734400000
}
]

0 comments on commit 25c2c18

Please sign in to comment.