mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-07 14:41:20 +00:00
Allow budget store to have optional webhook using "fire_webhooks".
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user