Original PR: https://github.com/eitchtee/WYGIWYH/pull/58 Author: @eitchtee Created: 1/23/2025 Status: ✅ Merged Merged: 1/23/2025 Merged by: @eitchtee
Base: main ← Head: 41-import-export-function
main
41-import-export-function
c171e04
fbb26b8
86dac63
a94e0b4
238f205
3ccb0e1
f96d8d2
2d88647
ba0c547
3ef6b0a
46 files changed (+2190 additions, -4 deletions)
📝 .env.example (+6 -0) 📝 app/WYGIWYH/settings.py (+4 -0) 📝 app/WYGIWYH/urls.py (+1 -0) ➕ app/apps/common/templatetags/json.py (+11 -0) ➕ app/apps/import_app/__init__.py (+0 -0) ➕ app/apps/import_app/admin.py (+6 -0) ➕ app/apps/import_app/apps.py (+6 -0) ➕ app/apps/import_app/forms.py (+64 -0) ➕ app/apps/import_app/migrations/0001_initial.py (+51 -0) ➕ app/apps/import_app/migrations/0002_alter_importprofile_name_and_more.py (+23 -0) ➕ app/apps/import_app/migrations/__init__.py (+0 -0) ➕ app/apps/import_app/models.py (+87 -0) ➕ app/apps/import_app/schemas.py (+0 -0) ➕ app/apps/import_app/schemas/__init__.py (+1 -0) ➕ app/apps/import_app/schemas/v1.py (+406 -0) ➕ app/apps/import_app/services/__init__.py (+3 -0) ➕ app/apps/import_app/services/presets.py (+45 -0) ➕ app/apps/import_app/services/v1.py (+547 -0) ➕ app/apps/import_app/tasks.py (+18 -0) ➕ app/apps/import_app/tests.py (+3 -0)
.env.example
app/WYGIWYH/settings.py
app/WYGIWYH/urls.py
app/apps/common/templatetags/json.py
app/apps/import_app/__init__.py
app/apps/import_app/admin.py
app/apps/import_app/apps.py
app/apps/import_app/forms.py
app/apps/import_app/migrations/0001_initial.py
app/apps/import_app/migrations/0002_alter_importprofile_name_and_more.py
app/apps/import_app/migrations/__init__.py
app/apps/import_app/models.py
app/apps/import_app/schemas.py
app/apps/import_app/schemas/__init__.py
app/apps/import_app/schemas/v1.py
app/apps/import_app/services/__init__.py
app/apps/import_app/services/presets.py
app/apps/import_app/services/v1.py
app/apps/import_app/tasks.py
app/apps/import_app/tests.py
...and 26 more files
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 Pull Request Information
Original PR: https://github.com/eitchtee/WYGIWYH/pull/58
Author: @eitchtee
Created: 1/23/2025
Status: ✅ Merged
Merged: 1/23/2025
Merged by: @eitchtee
Base:
main← Head:41-import-export-function📝 Commits (10+)
c171e04feat: add import app boilerplatefbb26b8feat: rename app, some work on schema86dac63feat(import): improve schema definitiona94e0b4docs(requirements): add django_ace238f205docker: add temp volume3ccb0e1feat(transactions): soft deletef96d8d2feat(transactions): soft delete2d88647feat(import): disable cache when runningba0c547feat(import): add migrations3ef6b0afeat(settings): add KEEP_DELETED_TRANSACTIONS_FOR variable📊 Changes
46 files changed (+2190 additions, -4 deletions)
View changed files
📝
.env.example(+6 -0)📝
app/WYGIWYH/settings.py(+4 -0)📝
app/WYGIWYH/urls.py(+1 -0)➕
app/apps/common/templatetags/json.py(+11 -0)➕
app/apps/import_app/__init__.py(+0 -0)➕
app/apps/import_app/admin.py(+6 -0)➕
app/apps/import_app/apps.py(+6 -0)➕
app/apps/import_app/forms.py(+64 -0)➕
app/apps/import_app/migrations/0001_initial.py(+51 -0)➕
app/apps/import_app/migrations/0002_alter_importprofile_name_and_more.py(+23 -0)➕
app/apps/import_app/migrations/__init__.py(+0 -0)➕
app/apps/import_app/models.py(+87 -0)➕
app/apps/import_app/schemas.py(+0 -0)➕
app/apps/import_app/schemas/__init__.py(+1 -0)➕
app/apps/import_app/schemas/v1.py(+406 -0)➕
app/apps/import_app/services/__init__.py(+3 -0)➕
app/apps/import_app/services/presets.py(+45 -0)➕
app/apps/import_app/services/v1.py(+547 -0)➕
app/apps/import_app/tasks.py(+18 -0)➕
app/apps/import_app/tests.py(+3 -0)...and 26 more files
📄 Description
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.