Returns a list of summary group objects for all groups in the organisation.
(self, request: Request, organisation_pk: int)
| 287 | |
| 288 | @action(detail=False, methods=["GET"]) |
| 289 | def summaries(self, request: Request, organisation_pk: int) -> Response: |
| 290 | """ |
| 291 | Returns a list of summary group objects for all groups in the organisation. |
| 292 | """ |
| 293 | return self.list(request, organisation_pk) |
| 294 | |
| 295 | |
| 296 | @api_view(["POST"]) |