mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
rename some stuff
This commit is contained in:
parent
e228e18f04
commit
9e311241b3
@ -28,9 +28,9 @@ export interface SelectionDataItem {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface SelectionData {
|
export interface SelectionData {
|
||||||
correspondents: SelectionDataItem[]
|
selected_correspondents: SelectionDataItem[]
|
||||||
tags: SelectionDataItem[]
|
selected_tags: SelectionDataItem[]
|
||||||
document_types: SelectionDataItem[]
|
selected_document_types: SelectionDataItem[]
|
||||||
}
|
}
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
@ -125,8 +125,7 @@ export class DocumentService extends AbstractPaperlessService<PaperlessDocument>
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
selectionData(ids: number[]): Observable<SelectionData> {
|
getSelectionData(ids: number[]): Observable<SelectionData> {
|
||||||
console.log(ids)
|
|
||||||
return this.http.post<SelectionData>(this.getResourceUrl(null, 'selection_data'), {"documents": ids})
|
return this.http.post<SelectionData>(this.getResourceUrl(null, 'selection_data'), {"documents": ids})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -420,7 +420,7 @@ class SelectionDataView(APIView):
|
|||||||
"id": t.id,
|
"id": t.id,
|
||||||
"document_count": t.document_count
|
"document_count": t.document_count
|
||||||
} for t in tags],
|
} for t in tags],
|
||||||
"selected_types": [{
|
"selected_document_types": [{
|
||||||
"id": t.id,
|
"id": t.id,
|
||||||
"document_count": t.document_count
|
"document_count": t.document_count
|
||||||
} for t in types]
|
} for t in types]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user