Fix User token

Needs encode string to Base64
This commit is contained in:
RubenPX 2022-04-07 14:12:20 +02:00
parent 629a773dd2
commit 184d22ac81
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@
<script>
const table = new simpleDatatables.DataTable("table")
const API_URLS = {
Auth_Token: "Basic ZDc5YjQyOGItZTJjMy00NDA0LThhODItNzJjMTNmOWNkYmNjOg==", // {{ current_user.token }}
Auth_Token: `Basic ${btoa("{{ current_user.token }}")}`, //
currentUserID: "{{ current_user.id }}",
lots: "{{ url_for('Lot.main') }}",
devices: "{{ url_for('Device.main') }}",