Explorar el Código

Merge pull request #32366 from nextcloud/bug/noid/fix-property-name

Use property name for addType
tags/v25.0.0beta1
Carl Schwan hace 2 años
padre
commit
f4058a2432
No account linked to committer's email address
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      apps/oauth2/lib/Db/Client.php

+ 2
- 2
apps/oauth2/lib/Db/Client.php Ver fichero

@@ -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');
}
}

Cargando…
Cancelar
Guardar