Skip to content

Commit eb0fb79

Browse files
committed
SDK-556: Update Example projects
1 parent 715dfcf commit eb0fb79

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ For information on testing with multiple Python versions, see [VERSION-SUPPORT.m
280280
## API Coverage
281281

282282
* Activity Details
283-
* [X] User ID `user_id`
283+
* [X] Remember Me ID `user_id`
284+
* [X] ReceiptID `receipt_id`
285+
* [X] Timestamp `timestamp`
284286
* [X] Profile `profile`
285287
* [X] Photo `selfie`
286288
* [X] Given Names `given_names`
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
yoti>=2.4.0
1+
yoti>=2.5.0
22
Django==1.11
33
python-dotenv>=0.7.1
44
django-sslserver

examples/yoti_example_django/requirements.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,22 @@
44
#
55
# pip-compile --output-file requirements.txt requirements.in
66
#
7+
asn1==2.2.0 # via yoti
78
asn1crypto==0.24.0 # via cryptography
89
certifi==2018.4.16 # via requests
910
cffi==1.11.5 # via cryptography
1011
chardet==3.0.4 # via requests
11-
cryptography==2.2.2 # via yoti
12+
cryptography==2.2.2 # via pyopenssl, yoti
1213
django-sslserver==0.20
1314
django==1.11
1415
future==0.16.0 # via yoti
1516
idna==2.7 # via cryptography, requests
1617
protobuf==3.6.0 # via yoti
1718
pycparser==2.18 # via cffi
19+
pyopenssl==18.0.0 # via yoti
1820
python-dotenv==0.8.2
1921
pytz==2018.4 # via django
2022
requests==2.19.1 # via yoti
21-
six==1.11.0 # via cryptography, protobuf
23+
six==1.11.0 # via cryptography, protobuf, pyopenssl
2224
urllib3==1.23 # via requests
23-
yoti==2.4.0
25+
yoti==2.5.0

examples/yoti_example_django/yoti_example/templates/profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h3>Yoti Profile</h3>
4242
{% endif %}
4343
{% if user_id %}
4444
<tr>
45-
<th scope="row">Yoti ID</th>
45+
<th scope="row">Remember Me ID</th>
4646
<td>{{user_id}}</td>
4747
</tr>
4848
{% endif %}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
flask>=0.10
2-
yoti>=2.4.0
2+
yoti>=2.5.0
33
python-dotenv>=0.7.1
44
pyopenssl

examples/yoti_example_flask/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#
55
# pip-compile --output-file requirements.txt requirements.in
66
#
7+
asn1==2.2.0 # via yoti
78
asn1crypto==0.24.0 # via cryptography
89
certifi==2018.4.16 # via requests
910
cffi==1.11.5 # via cryptography
@@ -24,4 +25,4 @@ requests==2.19.1 # via yoti
2425
six==1.11.0 # via cryptography, protobuf, pyopenssl
2526
urllib3==1.23 # via requests
2627
werkzeug==0.14.1 # via flask
27-
yoti==2.4.0
28+
yoti==2.5.0

examples/yoti_example_flask/templates/profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h3>Yoti Profile</h3>
4242
{% endif %}
4343
{% if user_id %}
4444
<tr>
45-
<th scope="row">Yoti ID</th>
45+
<th scope="row">Remember Me ID</th>
4646
<td>{{user_id}}</td>
4747
</tr>
4848
{% endif %}

0 commit comments

Comments
 (0)