Allow budget store to have optional webhook using "fire_webhooks".

This commit is contained in:
James Cole
2025-09-14 08:55:29 +02:00
parent 9e6f9d16e4
commit c2d3f5da16
6 changed files with 46 additions and 20 deletions

View File

@@ -258,6 +258,12 @@ trait ConvertsDataTypes
if ('yes' === $value) {
return true;
}
if ('on' === $value) {
return true;
}
if ('y' === $value) {
return true;
}
if ('1' === $value) {
return true;
}