rename some stuff

This commit is contained in:
jonaswinkler 2020-12-28 12:31:14 +01:00
parent e228e18f04
commit 9e311241b3
2 changed files with 5 additions and 6 deletions

View File

@ -28,9 +28,9 @@ export interface SelectionDataItem {
}
export interface SelectionData {
correspondents: SelectionDataItem[]
tags: SelectionDataItem[]
document_types: SelectionDataItem[]
selected_correspondents: SelectionDataItem[]
selected_tags: SelectionDataItem[]
selected_document_types: SelectionDataItem[]
}
@Injectable({
@ -125,8 +125,7 @@ export class DocumentService extends AbstractPaperlessService<PaperlessDocument>
})
}
selectionData(ids: number[]): Observable<SelectionData> {
console.log(ids)
getSelectionData(ids: number[]): Observable<SelectionData> {
return this.http.post<SelectionData>(this.getResourceUrl(null, 'selection_data'), {"documents": ids})
}

View File

@ -420,7 +420,7 @@ class SelectionDataView(APIView):
"id": t.id,
"document_count": t.document_count
} for t in tags],
"selected_types": [{
"selected_document_types": [{
"id": t.id,
"document_count": t.document_count
} for t in types]