Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions core/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ api_platform:

# Enable the docs.
enable_docs: true


# Enable the data collector and the WebProfilerBundle integration.
enable_profiler: true

oauth:
# To enable or disable oauth.
enabled: false
Expand Down Expand Up @@ -119,6 +122,9 @@ api_platform:
mapping: []

swagger:
# The active versions of OpenAPI to be exported or used in the swagger_ui. The first value is the default.
versions: [2, 3]

# The swagger api keys.
api_keys: []

Expand Down Expand Up @@ -159,10 +165,10 @@ api_platform:

# To allow partial pagination for all resource collections.
# This improves performances by skipping the `COUNT` query.
partial: true
partial: false

# To allow the client to enable or disable the partial pagination.
client_partial: true
client_partial: false

# The name of the query parameter to enable or disable the partial pagination.
partial_parameter_name: 'partial' # Default value
Expand Down