aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/js/encryption.js
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2014-02-17 11:13:44 +0100
committerBjörn Schießle <schiessle@owncloud.com>2014-02-17 11:13:44 +0100
commit5a8d37023a84d933eaa5113400014805048a689b (patch)
tree6ec9cb3a014852f58737386231c1ef029dea8808 /apps/files_encryption/js/encryption.js
parent750ffa82317a6538384a9680d3fe5bc4b0395c70 (diff)
parent6778dc5a4a92ba4e808c072a9eae48ff91b6ec74 (diff)
downloadnextcloud-server-5a8d37023a84d933eaa5113400014805048a689b.tar.gz
nextcloud-server-5a8d37023a84d933eaa5113400014805048a689b.zip
Merge pull request #7155 from owncloud/enc_improved_error_handling
[encryption] improved error handling
Diffstat (limited to 'apps/files_encryption/js/encryption.js')
-rw-r--r--apps/files_encryption/js/encryption.js12
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,
+};