Working on Journals module and using React with Axios.

This commit is contained in:
Scott Idem
2021-05-19 18:05:41 -04:00
parent 530932f32a
commit c94b2fb2e7
7 changed files with 482 additions and 1 deletions

View File

@@ -38,6 +38,8 @@ async def get_account_header(x_account_id:str = Header(...)):
elif x_account_id == '':
log.info('The x-account-id header was empty.')
account = { 'id': None, 'id_random': None }
#account = { 'id': 0, 'id_random': 'abcdef123456' }
return account
# ### END ### API Lib General ### async get_account_header() ###