feat: add lang_code
Some checks failed
release / docker (push) Has been cancelled

This commit is contained in:
Mohamed Sohail 2025-01-14 11:08:39 +03:00
parent cd5b31d07e
commit 3c212c0612
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D

View File

@ -13,6 +13,7 @@ const (
ACCOUNT_GENDER = 7
ACCOUNT_COMMODITIES = 8
ACCOUNT_ACTIVE_VOUCHER = 17
ACCOUNT_LANG_CODE = 19
)
// ValidDataTypeLookup allows us to filter go-vise data types, additionally the value maps to the ussd_data coulmn
@ -25,4 +26,5 @@ var ValidDataTypeLookup = map[uint16]string{
ACCOUNT_GENDER: "gender",
ACCOUNT_COMMODITIES: "commodities",
ACCOUNT_ACTIVE_VOUCHER: "active_voucher",
ACCOUNT_LANG_CODE: "lang_code",
}