Separate services - app, db, and job #1

Open
swapnil wants to merge 36 commits from swapnil/inoreader2readwise:main into main
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 29a39cb633 - Show all commits

View File

@ -48,7 +48,7 @@ def get_latest_token():
'access_token': latest_token.access_token,
'refresh_token': latest_token.refresh_token,
'expiration_seconds': latest_token.expiration_seconds,
'timestamp': latest_token.timestamp.isoformat()
'timestamp': int(latest_token.timestamp.timestamp())
}
return jsonify({'token': token_info}), 200
else: