* remove cache usage in AlertGroupView * remove CustomSearchFilter * remove caching for alerts * remove readonly db setup * render templates on alert creation * serialize only necessary fields on alert groups list * optimize AlertGroupListSerializer * return on-demand templating for alerts * return on-demand templating for alert groups * use CursorPaginator * remove templating on alert create * pass alert to AlertGroupWebRenderer * alert_count -> alerts_count * make sql joins after pagination * add migration * bring alert.save() back * fix tests * fix tests * fix tests * add perpage query param * add cursor pagination to incidents page * remove cached_render_for_web usage * post merge fix * keep cursor * lint * remove get_alert_groups_and_days_for_previous_same_period * fix pagination on navigate * refine search_fields on AlertGroupView Co-authored-by: Maxim <hello.makson@gmail.com> Co-authored-by: Maxim <maxim.mordasov@grafana.com>
20 lines
459 B
Python
20 lines
459 B
Python
from rest_framework.pagination import CursorPagination, PageNumberPagination
|
|
|
|
|
|
class HundredPageSizePaginator(PageNumberPagination):
|
|
page_size = 100
|
|
|
|
|
|
class FiftyPageSizePaginator(PageNumberPagination):
|
|
page_size = 50
|
|
|
|
|
|
class TwentyFivePageSizePaginator(PageNumberPagination):
|
|
page_size = 25
|
|
|
|
|
|
class TwentyFiveCursorPaginator(CursorPagination):
|
|
page_size = 25
|
|
max_page_size = 100
|
|
page_size_query_param = "perpage"
|
|
ordering = "-pk"
|