Set human readable module ids

This commit is contained in:
Thomas Müller 2015-04-01 15:42:08 +02:00
parent 43c0af2580
commit feb9a6e216
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ use OCA\Encryption\KeyManager;
class Encryption implements IEncryptionModule {
const ID = '42';
const ID = 'OC_DEFAULT_MODULE';
/**
* @var Crypt

View file

@ -34,7 +34,7 @@ class DummyModule implements IEncryptionModule {
* @return string defining the technical unique id
*/
public function getId() {
return "34876934";
return "OC_DUMMY_MODULE";
}
/**