mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 05:49:16 +01:00
fix(api): 🐛 Fix oauth token endpoint returning an ISO-8601 string instead of a unix timestamp
This commit is contained in:
parent
ff14e5a5d3
commit
9566387273
2 changed files with 9 additions and 5 deletions
|
|
@ -152,7 +152,7 @@ describe("POST /oauth/token/", () => {
|
|||
access_token: expect.any(String),
|
||||
token_type: "Bearer",
|
||||
scope: "read write",
|
||||
created_at: expect.any(String),
|
||||
created_at: expect.any(Number),
|
||||
expires_in: expect.any(Number),
|
||||
id_token: null,
|
||||
refresh_token: null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue