Make SECRET_PLACEHOLDER available globally

This commit is contained in:
Johannes Zellner
2020-05-14 23:04:19 +02:00
parent 23607c303c
commit 8f0a76ecef

View File

@@ -65,6 +65,8 @@ var ROLES = {
USER: 'user'
};
var SECRET_PLACEHOLDER = String.fromCharCode(0x25CF).repeat(8);
angular.module('Application').service('Client', ['$http', '$interval', '$timeout', 'md5', 'Notification', function ($http, $interval, $timeout, md5, Notification) {
var client = null;