forked from PeterSurda/inoreader2readwise
app: fix
This commit is contained in:
parent
8fd838ce23
commit
84a1ed15f5
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue
Block a user