Go to file
Yoga Pangestu 7bbe4e7295 Implement subscription, tenant, and user services with CRUD operations and associated tests
- Added subscription_service.py for managing subscriptions with functions to create, read, update, and delete subscriptions.
- Added tenant_service.py for managing tenants with functions to create, read, update, delete tenants, and assign users to tenants.
- Added user_service.py for managing users with functions to create, read, update, and delete users.
- Created tests for business types, plans, subscriptions, tenants, and users, ensuring proper functionality and error handling.
- Implemented pagination in user listing and included user profiles in responses.
- Established fixtures for database setup and teardown in tests.
2026-07-17 23:36:31 +07:00
app Implement subscription, tenant, and user services with CRUD operations and associated tests 2026-07-17 23:36:31 +07:00
tests Implement subscription, tenant, and user services with CRUD operations and associated tests 2026-07-17 23:36:31 +07:00
.gitignore Enhance DBML schema by adding relationships and constraints for users, tenants, and subscriptions 2026-07-14 15:54:26 +07:00
DBML.md Add DBML schema for users, tenants, subscriptions, and related entities 2026-07-14 15:43:57 +07:00
main.py Add response utility functions and HTTP exception handler to improve API responses 2026-07-17 22:11:25 +07:00
requirements.txt initial commit 2026-07-12 23:48:51 +07:00
REST_API_RESPONSE_FORMAT.md Add REST API response format documentation based on best practices 2026-07-17 22:10:48 +07:00
seed.py Add factories and seeders for business types, plans, subscriptions, tenants, and users 2026-07-17 23:15:05 +07:00