From ec497fa48e806d2f4fe042ec7b99968baa070581 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Fri, 28 Jul 2017 13:02:32 -0700 Subject: [PATCH] adding no-cache headers to the POST to /authtoken --- .../login/authenticationServices/authentication.service.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/awx/ui/client/src/login/authenticationServices/authentication.service.js b/awx/ui/client/src/login/authenticationServices/authentication.service.js index f7b8dd8666..4f2d826f7a 100644 --- a/awx/ui/client/src/login/authenticationServices/authentication.service.js +++ b/awx/ui/client/src/login/authenticationServices/authentication.service.js @@ -55,6 +55,10 @@ export default data: { "username": username, "password": password + }, + headers: { + 'Cache-Control': 'no-store', + 'Pragma': 'no-cache' } }); },