Commit 3bd3d623 by aa.gusti

validasi NIK 16

1 parent ba3cbc53
......@@ -104,7 +104,7 @@ def validasi_data(dat):
nik = ""
if 'nik' in dat:
nik = re.sub('\D', '', dat['nik'])
if len(nik) != 15:
if len(nik) != 16:
log.info("Validasi NIK Error")
raise JsonRpcInvalidNikError
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!