Skip to content

Commit f35276c

Browse files
committed
update docs
1 parent d5165dc commit f35276c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
66

77
Note: Minor version `0.X.0` update might break the API, It's recommended to pin `tipg` to minor version: `tipg>=0.1,<0.2`
88

9+
## [unreleased]
10+
11+
- add `tags` to all routes
12+
913
## [0.5.6] - 2023-12-19
1014

1115
- Fix collections `prev` links and collections html templates

docs/src/advanced/customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async def lifespan(app: FastAPI):
4141
app = FastAPI(openapi_url="/api", docs_url="/api.html", lifespan=lifespan)
4242

4343
endpoints = OGCFeaturesFactory(with_common=True)
44-
app.include_router(endpoints.router, tags=["OGC Features API"])
44+
app.include_router(endpoints.router)
4545

4646
add_exception_handlers(app, DEFAULT_STATUS_CODES)
4747
```

docs/src/user_guide/factories.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ from tipg.factory import OGCFeaturesFactory
6767

6868
app = FastAPI()
6969
endpoints = OGCFeaturesFactory(with_common=True)
70-
app.include_router(endpoints.router, tags=["OGC Features API"])
70+
app.include_router(endpoints.router)
7171
```
7272

7373
#### Creation Options
@@ -106,7 +106,7 @@ from tipg.factory import OGCTilesFactory
106106

107107
app = FastAPI()
108108
endpoints = OGCTilesFactory(with_common=True)
109-
app.include_router(endpoints.router, tags=["OGC Tiles API"])
109+
app.include_router(endpoints.router)
110110
```
111111

112112
#### Creation Options

0 commit comments

Comments
 (0)