-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚚 Rename organization resources to team (#32)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
- Loading branch information
1 parent
1f302b5
commit 6b068c5
Showing
11 changed files
with
491 additions
and
570 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
from fastapi import APIRouter | ||
|
||
from app.api.routes import items, login, organizations, users, utils | ||
from app.api.routes import items, login, teams, users, utils | ||
|
||
api_router = APIRouter() | ||
api_router.include_router(login.router, tags=["login"]) | ||
api_router.include_router(users.router, prefix="/users", tags=["users"]) | ||
api_router.include_router(utils.router, prefix="/utils", tags=["utils"]) | ||
api_router.include_router(items.router, prefix="/items", tags=["items"]) | ||
api_router.include_router( | ||
organizations.router, prefix="/organizations", tags=["organizations"] | ||
) | ||
api_router.include_router(teams.router, prefix="/teams", tags=["teams"]) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.