1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00

Add certificate collection rules for updated and certificateID

This commit is contained in:
kodumbeats 2021-05-17 13:50:44 -04:00
parent af7f9dd6e1
commit 6f22854c54

View file

@ -1272,6 +1272,24 @@ $collections = [
'required' => false,
'array' => false,
],
[
'$collection' => Database::SYSTEM_COLLECTION_RULES,
'label' => 'Updated Date',
'key' => 'updated',
'type' => Database::SYSTEM_VAR_TYPE_NUMERIC,
'default' => 0,
'required' => false,
'array' => false,
],
[
'$collection' => Database::SYSTEM_COLLECTION_RULES,
'label' => 'Certificate ID',
'key' => 'certificateId',
'type' => Database::SYSTEM_VAR_TYPE_KEY,
'default' => '',
'required' => true,
'array' => false,
],
],
],
Database::SYSTEM_COLLECTION_FILES => [