diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-02-11 12:44:06 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-02-17 10:03:57 +0100 |
commit | 6778dc5a4a92ba4e808c072a9eae48ff91b6ec74 (patch) | |
tree | 6ec9cb3a014852f58737386231c1ef029dea8808 /apps/files_encryption/js/encryption.js | |
parent | f2f5769df7d4c2b33a847e86a71d94d5c689decd (diff) | |
download | nextcloud-server-6778dc5a4a92ba4e808c072a9eae48ff91b6ec74.tar.gz nextcloud-server-6778dc5a4a92ba4e808c072a9eae48ff91b6ec74.zip |
don't block login forever if we are stuck in the middle of the initial encryption
Diffstat (limited to 'apps/files_encryption/js/encryption.js')
-rw-r--r-- | apps/files_encryption/js/encryption.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/files_encryption/js/encryption.js b/apps/files_encryption/js/encryption.js new file mode 100644 index 00000000000..65ffabe55e6 --- /dev/null +++ b/apps/files_encryption/js/encryption.js @@ -0,0 +1,12 @@ +/** + * 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. + */ + +OC.Encryption={ + MIGRATION_OPEN:0, + MIGRATION_COMPLETED:1, + MIGRATION_IN_PROGRESS:-1, +}; |