0ca6398aa3
This reverts commit c1a60a2349
.
41 lines
835 B
JavaScript
41 lines
835 B
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
* @namespace
|
|
* @memberOf OC
|
|
*/
|
|
OC.Encryption= {
|
|
MIGRATION_OPEN: 0,
|
|
MIGRATION_COMPLETED: 1,
|
|
MIGRATION_IN_PROGRESS: -1,
|
|
|
|
|
|
displayEncryptionWarning: function () {
|
|
|
|
if (!OC.Notification.isHidden()) {
|
|
return;
|
|
}
|
|
|
|
$.get(
|
|
OC.generateUrl('/apps/encryption/ajax/getStatus')
|
|
, function( result ) {
|
|
if (result.status === "success") {
|
|
OC.Notification.show(result.data.message);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
};
|
|
|
|
$(document).ready(function() {
|
|
// wait for other apps/extensions to register their event handlers and file actions
|
|
// in the "ready" clause
|
|
_.defer(function() {
|
|
OC.Encryption.displayEncryptionWarning();
|
|
});
|
|
});
|