mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-19 05:59:44 -04:00
Use underscores to notate 1000s
This is easier to read than using multiplication, or nothing.
This commit is contained in:
@@ -34,28 +34,28 @@ class Config(object):
|
||||
DEFAULT_SERVICE_LIMIT = 50
|
||||
DEFAULT_FREE_SMS_FRAGMENT_LIMITS = {
|
||||
'central': {
|
||||
2020: 250000,
|
||||
2020: 250_000,
|
||||
},
|
||||
'local': {
|
||||
2020: 25000,
|
||||
2020: 25_000,
|
||||
},
|
||||
'nhs_central': {
|
||||
2020: 250000,
|
||||
2020: 250_000,
|
||||
},
|
||||
'nhs_local': {
|
||||
2020: 25000,
|
||||
2020: 25_000,
|
||||
},
|
||||
'nhs_gp': {
|
||||
2020: 25000,
|
||||
2020: 25_000,
|
||||
},
|
||||
'emergency_service': {
|
||||
2020: 25000,
|
||||
2020: 25_000,
|
||||
},
|
||||
'school_or_college': {
|
||||
2020: 25000,
|
||||
2020: 25_000,
|
||||
},
|
||||
'other': {
|
||||
2020: 25000,
|
||||
2020: 25_000,
|
||||
},
|
||||
}
|
||||
EMAIL_EXPIRY_SECONDS = 3600 # 1 hour
|
||||
|
||||
Reference in New Issue
Block a user