mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
619 B
25 lines
619 B
import ApiService from '@/services/api.service'
|
|
|
|
class DocumentService {
|
|
constructor() {
|
|
this.request = new ApiService()
|
|
}
|
|
|
|
getDocumentList(projectId) {
|
|
return this.request.get(`/projects/${projectId}/docs`)
|
|
}
|
|
|
|
addDocument(projectId, payload) {
|
|
return this.request.post(`/projects/${projectId}/docs`, payload)
|
|
}
|
|
|
|
deleteDocument(projectId, docId) {
|
|
return this.request.delete(`/projects/${projectId}/docs/${docId}`)
|
|
}
|
|
|
|
updateDocument(projectId, docId, payload) {
|
|
return this.request.patch(`/projects/${projectId}/docs/${docId}`, payload)
|
|
}
|
|
}
|
|
|
|
export default new DocumentService()
|