fix directory name

- now saves to ~/.radical-api
- made API key parameter for /key/me consistent.
This commit is contained in:
Riley Housden 2021-12-01 01:21:26 -05:00
parent 0d6b817ff5
commit e9fa150618
Signed by: InValidFire
GPG Key ID: 0D6208F6DF56B4D8
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ from datetime import datetime, timedelta
from fastapi.encoders import jsonable_encoder
from pathlib import Path
DATA_DIR = Path.home().joinpath(".tracker_api/trackers")
DATA_DIR = Path.home().joinpath(".radical-api/trackers")
def object_hook(dct):

View File

@ -86,6 +86,6 @@ def create_key(name, system_key: APIKey = Depends(get_system_key)):
@router.get("/key/me")
def key_info(api_key: APIKey = Depends(get_api_key)):
def key_info(access_token: APIKey = Depends(get_api_key)):
data = load_keys()
return data[api_key]
return data[access_token]