adding no-cache headers to the POST to /authtoken

This commit is contained in:
Jared Tabor 2017-07-28 13:02:32 -07:00
parent 39eab02713
commit ec497fa48e

View File

@ -55,6 +55,10 @@ export default
data: {
"username": username,
"password": password
},
headers: {
'Cache-Control': 'no-store',
'Pragma': 'no-cache'
}
});
},