diff options
author | Clark Tomlinson <fallen013@gmail.com> | 2015-03-26 20:35:36 -0400 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:27 +0200 |
commit | d15c2e52b0576e7846a09fd84e0e10f3054623c6 (patch) | |
tree | f027d9cb18160353fe440e4eef48be8aa7cdea99 /apps/encryption/js/encryption.js | |
parent | 2e00acda079644ce4eb61b8a3812b095df8d05e3 (diff) | |
download | nextcloud-server-d15c2e52b0576e7846a09fd84e0e10f3054623c6.tar.gz nextcloud-server-d15c2e52b0576e7846a09fd84e0e10f3054623c6.zip |
cleanup and removing cachefactory
Diffstat (limited to 'apps/encryption/js/encryption.js')
-rw-r--r-- | apps/encryption/js/encryption.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/encryption/js/encryption.js b/apps/encryption/js/encryption.js new file mode 100644 index 00000000000..d2d1c3a1fc5 --- /dev/null +++ b/apps/encryption/js/encryption.js @@ -0,0 +1,16 @@ +/** + * 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, +}; |