feat: add AED currency support and user node groups

This commit is contained in:
mik-tf
2025-09-08 14:55:58 -04:00
parent 1807a85a53
commit f7af11b594
7 changed files with 127 additions and 11 deletions

View File

@@ -134,6 +134,18 @@ impl CurrencyService {
provider_config: None,
last_updated: chrono::Utc::now(),
},
Currency {
code: "AED".to_string(),
name: "UAE Dirham".to_string(),
symbol: "د.إ".to_string(),
currency_type: crate::models::currency::CurrencyType::Fiat,
exchange_rate_to_base: dec!(3.67),
is_base_currency: false,
decimal_places: 2,
is_active: true,
provider_config: None,
last_updated: chrono::Utc::now(),
},
]
}