瀏覽代碼

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

Use property name for addType
tags/v25.0.0beta1
Carl Schwan 2 年之前
父節點
當前提交
f4058a2432
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. 2
    2
      apps/oauth2/lib/Db/Client.php

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

Loading…
取消
儲存