diff --git a/CHANGES.md b/CHANGES.md index 4ea7524f21..540c047924 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -30,8 +30,9 @@ - Fixed form array casting in dashboard (#1070) - Fixed collection document rule form in dashboard (#1069) - Bugs in the Teams API: - - Fixed incorrect audit worker event names (#1143) - - Increased limit of memberships fetched in `createTeamMembership` to 2000 (#1143) +- Fixed incorrect audit worker event names (#1143) +- Increased limit of memberships fetched in `createTeamMembership` to 2000 (#1143) +- Fixed exception thrown when SSL certificate is already stored in the database (#1151) ## Breaking Changes (Read before upgrading!) diff --git a/app/config/collections.php b/app/config/collections.php index 1cff0031a2..6789237c9c 100644 --- a/app/config/collections.php +++ b/app/config/collections.php @@ -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' => false, + 'array' => false, + ], ], ], Database::SYSTEM_COLLECTION_FILES => [