From 5bce6095a40d60c2f6244af429f763af2401b656 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 28 Jan 2017 17:25:53 -0500 Subject: [PATCH] back to int enum values to math identity response --- src/models/api/requestModels.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/api/requestModels.js b/src/models/api/requestModels.js index a881d8997f..5e484d1154 100644 --- a/src/models/api/requestModels.js +++ b/src/models/api/requestModels.js @@ -16,7 +16,7 @@ var TokenRequest = function (email, masterPasswordHash, token, device) { this.email = email; this.masterPasswordHash = masterPasswordHash; this.token = token; - this.provider = 'Authenticator'; + this.provider = 0; // 0 = Authenticator this.device = null; if (device) { this.device = device;