misc: add explicit flag to get anonymised forms (#86606)
gitea/wcs-olap/pipeline/head This commit looks good Details

This commit is contained in:
Frédéric Péters 2024-02-06 14:30:12 +01:00
parent b6d00fab97
commit 694e4044d2
1 changed files with 1 additions and 0 deletions

View File

@ -240,6 +240,7 @@ class FormDatas:
url_parts = [f'api/forms/{self.formdef.slug}/list']
query = {}
query['full'] = 'on' if self._full else 'off'
query['include-anonymised'] = 'on'
if offset:
query['offset'] = str(offset)
if limit: