Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Changing the property in the tab will also change the DAV property and hence it will be possible to access the
properties via DAV call `PROPFIND`.
]]></description>
<version>2.0.4</version>
<version>2.0.5</version>
<licence>apache</licence>
<author mail="nextcloud@stekoe.de">SteKoe</author>
<namespace>CustomProperties</namespace>
Expand All @@ -28,7 +28,7 @@
</screenshot>
<dependencies>
<php min-version="7.3" />
<nextcloud min-version="20" max-version="24" />
<nextcloud min-version="20" max-version="29" />
</dependencies>
<settings>
<admin>OCA\CustomProperties\Settings\AdminSettings</admin>
Expand Down
5 changes: 4 additions & 1 deletion lib/Db/Property.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ class Property extends Entity
public $propertyname;
/** @var string */
public $propertyvalue;
/** @var int */
public $valuetype;

public function __construct()
{
Expand All @@ -22,5 +24,6 @@ public function __construct()
$this->addType('propertypath', 'string');
$this->addType('propertyname', 'string');
$this->addType('propertyvalue', 'string');
$this->addType('valuetype', 'int');
}
}
}