Spaces:
Configuration error
Configuration error
File size: 289 Bytes
99122b8 |
1 2 3 4 5 6 |
from drf_yasg.generators import OpenAPISchemaGenerator
class BothHttpAndHttpsSchemaGenerator(OpenAPISchemaGenerator):
def get_schema(self, request=None, public=False):
schema = super().get_schema(request, public)
schema.schemes = ["http", "https"]
return schema |