We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d7c08 commit b223c1bCopy full SHA for b223c1b
source/app/blueprints/rest/v2/alerts.py
@@ -50,7 +50,7 @@ class AlertsOperations:
50
def __init__(self):
51
self._schema = AlertSchema()
52
53
- def list(self):
+ def search(self):
54
page = request.args.get('page', 1, type=int)
55
per_page = request.args.get('per_page', 10, type=int)
56
@@ -218,7 +218,7 @@ def delete(self, identifier):
218
@alerts_blueprint.get('')
219
@ac_api_requires(Permissions.alerts_read)
220
def alerts_list_route() -> Response:
221
- return alerts_operations.list()
+ return alerts_operations.search()
222
223
224
@alerts_blueprint.post('')
0 commit comments