jones-dev #19

Merged
corbz merged 106 commits from jones-dev into master 2024-01-26 17:39:03 +00:00
Showing only changes of commit 9cff951b4b - Show all commits

View File

@ -30,6 +30,18 @@ class TicketPaginiation(PageNumberPagination):
class TicketListApiView(generics.ListAPIView):
"""Returns a list of all **Tickets** on the system.
Use a querystring to filter down, order, and search the results.
Querystring options are:
- uuid
- priority
- tags
- author
- author__department
"""
authentication_classes = [SessionAuthentication, TokenAuthentication]
permission_classes = [permissions.IsAuthenticated]