Correct hook_farm_update_exclude_config API docs #608

This commit is contained in:
Paul Weidner 2022-11-28 15:00:17 -08:00
parent b4b3c4825f
commit 351e0b0cc7
2 changed files with 6 additions and 2 deletions

View File

@ -19,6 +19,10 @@ soon as possible.
- [Issue #3186530: farmOS 2.x PHP 8 support](https://www.drupal.org/project/farm/issues/3186530)
### Fixed
- [Correct hook_farm_update_exclude_config API docs #608](https://github.com/farmOS/farmOS/pull/608)
## [2.0.0-beta8.1] 2022-11-26
### Fixed

View File

@ -22,8 +22,8 @@
*/
function hook_farm_update_exclude_config() {
return [
'views.view.farm_log.yml',
'asset.type.structure.yml',
'views.view.farm_log',
'asset.type.structure',
];
}