1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-16 02:17:24 +02:00

get premium status from token

This commit is contained in:
Kyle Spearrin 2017-07-11 14:54:36 -04:00
parent 1053491d28
commit 94a13954a5
2 changed files with 12 additions and 2 deletions

View File

@ -2,7 +2,7 @@ angular
.module('bit.vault')
.controller('vaultViewLoginController', function ($scope, $state, $stateParams, loginService, toastr, $q,
$analytics, i18nService, utilsService, totpService, $timeout) {
$analytics, i18nService, utilsService, totpService, $timeout, tokenService) {
$scope.i18n = i18nService;
var from = $stateParams.from,
totpInterval = null;
@ -39,7 +39,7 @@ angular
$scope.login.showLaunch = false;
}
if (model.totp && (login.organizationUseTotp || false)) {
if (model.totp && (login.organizationUseTotp || tokenService.getPremium())) {
totpUpdateCode();
totpTick();

View File

@ -254,6 +254,16 @@ function initTokenService() {
return decoded.name;
};
TokenService.prototype.getPremium = function () {
var decoded = this.decodeToken();
if (typeof decoded.premium === 'undefined') {
return false;
}
return !!decoded.premium;
};
TokenService.prototype.getIssuer = function () {
var decoded = this.decodeToken();