docs: update release notes
This commit is contained in:
parent
d2df426489
commit
61b5714652
|
@ -62,7 +62,6 @@ class ProviderViewSet(ModelViewSet):
|
||||||
|
|
||||||
@swagger_auto_schema(responses={200: TypeCreateSerializer(many=True)})
|
@swagger_auto_schema(responses={200: TypeCreateSerializer(many=True)})
|
||||||
@action(detail=False)
|
@action(detail=False)
|
||||||
# pylint: disable=unused-argument
|
|
||||||
def types(self, request: Request) -> Response:
|
def types(self, request: Request) -> Response:
|
||||||
"""Get all creatable provider types"""
|
"""Get all creatable provider types"""
|
||||||
data = []
|
data = []
|
||||||
|
|
|
@ -50,7 +50,6 @@ class SourceViewSet(ReadOnlyModelViewSet):
|
||||||
|
|
||||||
@swagger_auto_schema(responses={200: TypeCreateSerializer(many=True)})
|
@swagger_auto_schema(responses={200: TypeCreateSerializer(many=True)})
|
||||||
@action(detail=False)
|
@action(detail=False)
|
||||||
# pylint: disable=unused-argument
|
|
||||||
def types(self, request: Request) -> Response:
|
def types(self, request: Request) -> Response:
|
||||||
"""Get all creatable source types"""
|
"""Get all creatable source types"""
|
||||||
data = []
|
data = []
|
||||||
|
|
|
@ -72,6 +72,11 @@ title: Release 2021.1.2
|
||||||
- sources/oauth: add callback URL to api
|
- sources/oauth: add callback URL to api
|
||||||
- web: fix ModalButton working in global scope, causing issues on 2nd use
|
- web: fix ModalButton working in global scope, causing issues on 2nd use
|
||||||
|
|
||||||
|
## Fixed in 2021.2.3-stable
|
||||||
|
|
||||||
|
- core: fix tokens using wrong lookup
|
||||||
|
- web: fix missing source create button
|
||||||
|
|
||||||
## Upgrading
|
## Upgrading
|
||||||
|
|
||||||
This release does not introduce any new requirements.
|
This release does not introduce any new requirements.
|
||||||
|
|
Reference in New Issue