]> source.dussan.org Git - nextcloud-server.git/commitdiff
Set human readable module ids
authorThomas Müller <thomas.mueller@tmit.eu>
Wed, 1 Apr 2015 13:42:08 +0000 (15:42 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 7 Apr 2015 11:30:30 +0000 (13:30 +0200)
apps/encryption/lib/crypto/encryption.php
apps/encryption_dummy/lib/dummymodule.php

index c3fd3405366f6bdfbaee2c9896d58c9ec4f60ea8..b66be26370f3922563d0659366ea0ea4acb9617c 100644 (file)
@@ -16,7 +16,7 @@ use OCA\Encryption\KeyManager;
 
 class Encryption implements IEncryptionModule {
 
-       const ID = '42';
+       const ID = 'OC_DEFAULT_MODULE';
 
        /**
         * @var Crypt
index 55e8f26af95245aecb602b56dc6df5e895e38481..8cec9dfaf4c97e822119a981072e24e23da3bfda 100644 (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";
        }
 
        /**