nextcloud/apps/encryption/js/encryption.js

35 lines
842 B
JavaScript
Raw Normal View History

2015-03-27 03:35:36 +03:00
/**
* Copyright (c) 2014
* Bjoern Schiessle <schiessle@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file.
*/
2015-04-21 13:19:15 +03:00
/**
* @namespace
* @memberOf OC
*/
OC.Encryption = _.extend(OC.Encryption || {}, {
2015-04-21 13:01:56 +03:00
displayEncryptionWarning: function () {
if (!OC.currentUser || !OC.Notification.isHidden()) {
2015-04-21 13:01:56 +03:00
return;
}
2015-04-21 13:01:56 +03:00
$.get(
OC.generateUrl('/apps/encryption/ajax/getStatus'),
function (result) {
2015-05-27 12:10:06 +03:00
if (result.status === "interactionNeeded") {
2015-04-21 13:01:56 +03:00
OC.Notification.show(result.data.message);
}
}
);
}
});
window.addEventListener('DOMContentLoaded', function() {
// wait for other apps/extensions to register their event handlers and file actions
// in the "ready" clause
_.defer(function() {
2015-04-21 13:01:56 +03:00
OC.Encryption.displayEncryptionWarning();
});
});