Skip to content

Commit 9e4664a

Browse files
authored
Merge pull request #14 from python-ellar/exclude_controller
fix: Exclude Storage Controller from OPENAPI docs
2 parents fbe98d5 + 8c1ae8e commit 9e4664a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ellar_storage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Storage Module for Ellar"""
22

3-
__version__ = "0.1.4"
3+
__version__ = "0.1.5"
44

55
from .module import StorageModule
66
from .providers import Provider, get_driver

ellar_storage/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from ellar_storage.services import StorageService
1010

1111

12-
@ecm.Controller(name="storage")
12+
@ecm.Controller(name="storage", include_in_schema=False)
1313
class StorageController:
1414
def __init__(self, storage_service: StorageService):
1515
self._storage_service = storage_service

0 commit comments

Comments
 (0)