]> source.dussan.org Git - nextcloud-server.git/commitdiff
Use property name for addType 32366/head
authorDaniel Kesselberg <mail@danielkesselberg.de>
Thu, 12 May 2022 19:12:46 +0000 (21:12 +0200)
committerDaniel Kesselberg <mail@danielkesselberg.de>
Thu, 12 May 2022 19:12:46 +0000 (21:12 +0200)
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
apps/oauth2/lib/Db/Client.php

index f0cac4bed333dba37355b50e4ce5db064bec0cfc..78f3d966928d6e1aa9efc7c9470a595c4a1047a0 100644 (file)
@@ -47,8 +47,8 @@ class Client extends Entity {
        public function __construct() {
                $this->addType('id', 'int');
                $this->addType('name', 'string');
-               $this->addType('redirect_uri', 'string');
-               $this->addType('client_identifier', 'string');
+               $this->addType('redirectUri', 'string');
+               $this->addType('clientIdentifier', 'string');
                $this->addType('secret', 'string');
        }
 }