Separate services - app, db, and job #1

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

View File

@ -54,7 +54,9 @@ def create_token():
# API to get the token based on the id
@app.route('/token/<id>', methods=['GET'])
def get_token_by_id(id):
token = Token.query.get_or_404(id)
token = Token.query.get(id)
if not token:
return jsonify({'error': 'Token not found'}), 404
token_info = {
'id': token.id,
'email': token.email,