Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGES/plugin_api/+expose-stable-ordering-filter.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Exposed ``StableOrderingFilter`` in the plugin API so pulp plugins can import it from ``pulpcore.plugin``.
3 changes: 2 additions & 1 deletion pulpcore/plugin/viewsets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ruff: noqa: F401
# isort: skip_file
from pulpcore.filters import BaseFilterSet
from pulpcore.filters import BaseFilterSet, StableOrderingFilter

# Allow plugin viewsets to return 202s
from pulpcore.app.response import OperationPostponedResponse, TaskGroupOperationResponse
Expand Down Expand Up @@ -55,6 +55,7 @@

__all__ = [
"BaseFilterSet",
"StableOrderingFilter",
"OperationPostponedResponse",
"TaskGroupOperationResponse",
"AlternateContentSourceViewSet",
Expand Down
Loading