mirror of
https://github.com/snipe/snipe-it.git
synced 2026-08-18 11:15:42 +00:00
The importer UI offers "Alert on Response" as a mappable column for category imports (app/Livewire/Importer.php, categories_fields), but CategoryImporter only ever read use_default_eula, require_acceptance and checkin_email. Anything the user mapped to alert_on_response was dropped: new categories were always created with the column default, and update-mode imports could never change it. alert_on_response was added to the Category model in #17116, four days after the category importer landed in #17062, and the importer's flag list was never extended to match. Adds it to the existing boolean-flag loop so it gets the same fetchHumanBoolean handling and the same present/absent CSV semantics as its three siblings. Co-Authored-By: Claude <noreply@anthropic.com>