1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-24 15:49:42 +02:00

feat(frontend): Fix scheduler, forgot password flow, and minor bug fixes (#725)

* feat(frontend): 💄 add recipe title

* fix(frontend): 🐛 fixes #722 side-bar issue

* feat(frontend):  Add page titles to all pages

* minor cleanup

* refactor(backend): ♻️ rewrite scheduler to be more modulare and work

* feat(frontend):  start password reset functionality

* refactor(backend): ♻️ refactor application settings to facilitate dependency injection

* refactor(backend): 🔥 remove RECIPE_SETTINGS env variables in favor of group settings

* formatting

* refactor(backend): ♻️ align naming convention

* feat(backend):  password reset

* test(backend):  password reset

* feat(frontend):  self-service password reset

* purge password schedule

* update user creation for tests

Co-authored-by: Hayden <hay-kot@pm.me>
This commit is contained in:
Hayden 2021-10-07 09:39:47 -08:00 committed by GitHub
parent d1f0441252
commit 2e9026f9ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
121 changed files with 1461 additions and 679 deletions

View file

@ -1,4 +1,4 @@
from tests.pre_test import DB_URL, settings # isort:skip
from tests.pre_test import settings # isort:skip
import json
@ -33,7 +33,10 @@ def api_client():
yield TestClient(app)
DB_URL.unlink(missing_ok=True)
try:
settings.DB_PROVIDER.db_path.unlink() # Handle SQLite Provider
except Exception:
pass
@fixture(scope="session")
@ -94,7 +97,7 @@ def g2_user(admin_token, api_client: requests, api_routes: AppRoutes):
user_id = json.loads(self_response.text).get("id")
group_id = json.loads(self_response.text).get("groupId")
return TestUser(user_id=user_id, group_id=group_id, token=token)
return TestUser(user_id=user_id, group_id=group_id, token=token, email=create_data["email"])
@fixture(scope="session")
@ -149,7 +152,9 @@ def unique_user(api_client: TestClient, api_routes: AppRoutes):
assert token is not None
try:
yield TestUser(group_id=user_data.get("groupId"), user_id=user_data.get("id"), token=token)
yield TestUser(
group_id=user_data.get("groupId"), user_id=user_data.get("id"), email=user_data.get("email"), token=token
)
finally:
# TODO: Delete User after test
pass
@ -170,7 +175,9 @@ def admin_user(api_client: TestClient, api_routes: AppRoutes):
assert user_data.get("id") is not None
try:
yield TestUser(group_id=user_data.get("groupId"), user_id=user_data.get("id"), token=token)
yield TestUser(
group_id=user_data.get("groupId"), user_id=user_data.get("id"), email=user_data.get("email"), token=token
)
finally:
# TODO: Delete User after test
pass