13 lines
283 B
JavaScript
13 lines
283 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.
|
||
|
*/
|
||
|
|
||
|
OC.Encryption={
|
||
|
MIGRATION_OPEN:0,
|
||
|
MIGRATION_COMPLETED:1,
|
||
|
MIGRATION_IN_PROGRESS:-1,
|
||
|
};
|