Commit 396a54e3 by François C.

Merge branch '6146-SUPERCAFOUTCH-fix-phone-number-matching-pattern' into 'dev_cooperatic'

replace supercafoutch broken phone number matching pattern by one which allows…

See merge request !269
parents 1d7f56d5 b0ccb8f0
Pipeline #3419 failed with stage
in 1 minute 27 seconds
......@@ -129,7 +129,9 @@ SHIFT_INFO = """Un service est une plage de trois heures un jour en particulier
PB_INSTRUCTIONS = """Si j'ai un problème, que je suis désinscrit, que je veux changer de créneaux ou quoi que ce soit, merci de ..."""
ENTRANCE_COME_FOR_SHOPING_MSG = "Bienvenue dans ton magasin !"
INPUT_PHONE_PATTERN = "^(((\+33(-| )\d{1})|\d{2})(\.| )\d{2}(\.| )\d{2}(\.| )\d{2}(\.| )\d{2})|(0\d{9})$"
#Regex stricte pour les numéros de téléphone français sur 10 chiffres
#et permissive pour les numéros commençant par + ou 00
INPUT_PHONE_PATTERN = "((\+|00)\d{5,30})|\d{10}"
CONFIRME_PRESENT_BTN = 'Clique ici pour valider ta présence'
ENTRANCE_WITH_LATE_MODE = True
# Members space / shifts
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment