diff --git a/README.md b/README.md
index 67e10f6..c7bfcb2 100644
--- a/README.md
+++ b/README.md
@@ -14,14 +14,14 @@
- | Your IP-Address |
+ The IP-Address of the user |
- -
- I store them because I am too lazy to configure them to be not stored.
-
- To prevent abuse
- To provide user-sessions
|
- For a very long time |
- On my server, by Netcup, in Germany. |
+ For a very long time |
+ On the developers server, by Netcup, in Germany. |
- | The data you enter (quizzes, email, username) |
- Self-explaining |
- Untill you delete your account |
- On my server, by Netcup, in Germany. |
+ The data the user enters (quizzes, email, username) |
+ Self-explaining |
+ Maximum of 30 days after you've deleted your account |
+ On the developers server, by Netcup, in Germany. |
- | Your hashed password |
+ The hashed password of the user |
Self-explaining |
- Untill you delete your account |
+ Maximum of 30 days after you've deleted your account |
On my server, by Netcup, in Germany. |
diff --git a/import_to_meili.py b/import_to_meili.py
index 44e17fe..63fcb9f 100644
--- a/import_to_meili.py
+++ b/import_to_meili.py
@@ -15,7 +15,7 @@ async def __main__():
quizzes = await Quiz.objects.filter(public=True).all()
for quiz in quizzes:
meili_data.append(await get_meili_data(quiz))
- print(meili_data)
+ print(len(meili_data))
client = meilisearch.Client(settings.meilisearch_url)
client.index(settings.meilisearch_index).add_documents(meili_data)
client.index(settings.meilisearch_index).update_settings({"sortableAttributes": ["created_at"]})