♻️ Refactor ohmyapi_auth

- remove Group and UserGroups
  (should be handled by dedicated app, if even)
- enforce User.Schema() include-fields
This commit is contained in:
Brian Wiborg 2025-10-28 14:37:45 +01:00
parent 458ffc6b2c
commit 7163fe778e
No known key found for this signature in database
3 changed files with 19 additions and 46 deletions

View file

@ -1,7 +1,7 @@
# Apps
Apps are a way to group database models and API routes that contextually belong together.
For example, OhMyAPI comes bundled with an `auth` app that carries a `User` and `Group` model and provides API endpoints for JWT authentication.
For example, OhMyAPI comes bundled with an `auth` app that carries a `User` model and provides API endpoints for JWT authentication.
Apps help organizing projects by isolating individual components (or "features") from one another.