From 9a52ec378fe4b1d685f9b226a8ced8571e4f503c Mon Sep 17 00:00:00 2001 From: Diego Calvo Date: Wed, 10 Dec 2025 21:18:23 +0300 Subject: [PATCH] add KES currency --- app/models/custom/budget.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/models/custom/budget.rb diff --git a/app/models/custom/budget.rb b/app/models/custom/budget.rb new file mode 100644 index 000000000..7ae0cfcff --- /dev/null +++ b/app/models/custom/budget.rb @@ -0,0 +1,5 @@ +load Rails.root.join("app", "models", "budget.rb") + +class Budget < ApplicationRecord + CURRENCY_SYMBOLS = %w[€ $ £ ¥ KSh].freeze +end \ No newline at end of file