diff options
Diffstat (limited to 'apps/oauth2/lib/Db')
-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'); } } |