<app-filterable-dropdown class="me-2 me-md-3" title="Correspondent" icon="person-fill" i18n-title
filterPlaceholder="Filter correspondents" i18n-filterPlaceholder
[items]="correspondents"
+ [disabled]="!userCanEditAll"
[editing]="true"
[applyOnClose]="applyOnClose"
- (open)="openCorrespondentDropdown()"
+ (opened)="openCorrespondentDropdown()"
[(selectionModel)]="correspondentSelectionModel"
(apply)="setCorrespondents($event)">
</app-filterable-dropdown>
<app-filterable-dropdown class="me-2 me-md-3" title="Document type" icon="file-earmark-fill" i18n-title
filterPlaceholder="Filter document types" i18n-filterPlaceholder
[items]="documentTypes"
+ [disabled]="!userCanEditAll"
[editing]="true"
[applyOnClose]="applyOnClose"
- (open)="openDocumentTypeDropdown()"
+ (opened)="openDocumentTypeDropdown()"
[(selectionModel)]="documentTypeSelectionModel"
(apply)="setDocumentTypes($event)">
</app-filterable-dropdown>
<app-filterable-dropdown class="me-2 me-md-3" title="Storage path" icon="folder-fill" i18n-title
filterPlaceholder="Filter storage paths" i18n-filterPlaceholder
[items]="storagePaths"
+ [disabled]="!userCanEditAll"
[editing]="true"
[applyOnClose]="applyOnClose"
- (open)="openStoragePathDropdown()"
+ (opened)="openStoragePathDropdown()"
[(selectionModel)]="storagePathsSelectionModel"
(apply)="setStoragePaths($event)">
</app-filterable-dropdown>
override_tag_ids=tag_ids,
task_id=task_id,
override_created=created,
+ override_owner_id=owner_id,
)
- return Response("OK")
+ return Response(async_task.id)
class SelectionDataView(GenericAPIView):