diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-05-13 13:44:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 13:44:00 +0200 |
commit | f4058a2432f748ffff6d7e45f2fb79ca383f8dd1 (patch) | |
tree | c8830870066eab7c92c3a3cebd9f6cb12853896c | |
parent | 52bb29bde117f13d8df106bdc6862efe12314448 (diff) | |
parent | 11cacb52d47b77683fe0bf41039acf8f871064e2 (diff) | |
download | nextcloud-server-f4058a2432f748ffff6d7e45f2fb79ca383f8dd1.tar.gz nextcloud-server-f4058a2432f748ffff6d7e45f2fb79ca383f8dd1.zip |
Merge pull request #32366 from nextcloud/bug/noid/fix-property-name
Use property name for addType
-rw-r--r-- | apps/oauth2/lib/Db/Client.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/oauth2/lib/Db/Client.php b/apps/oauth2/lib/Db/Client.php index f0cac4bed33..78f3d966928 100644 --- a/apps/oauth2/lib/Db/Client.php +++ b/apps/oauth2/lib/Db/Client.php @@ -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'); } } |