mattiashallberg
commited on
Commit
•
e274a19
1
Parent(s):
80e562d
hiroyasu.ito
Browse files
app.py
CHANGED
@@ -27,6 +27,8 @@ def environ_auth(username, password):
|
|
27 |
return True
|
28 |
elif username == os.environ.get('emi_otsuka') and password == os.environ.get('emi_otsuka_password'):
|
29 |
return True
|
|
|
|
|
30 |
else:
|
31 |
return False
|
32 |
|
|
|
27 |
return True
|
28 |
elif username == os.environ.get('emi_otsuka') and password == os.environ.get('emi_otsuka_password'):
|
29 |
return True
|
30 |
+
elif username == os.environ.get('hiroyasu.ito') and password == os.environ.get('hiroyasu.ito_password'):
|
31 |
+
return True
|
32 |
else:
|
33 |
return False
|
34 |
|