profiling + research + download
This commit is contained in:
26
src/service/ProjectService.js
Normal file
26
src/service/ProjectService.js
Normal file
@@ -0,0 +1,26 @@
|
||||
import axios from 'axios';
|
||||
export const ProjectService = {
|
||||
|
||||
getUserProjects() {
|
||||
return axios.get('/userProjects')
|
||||
|
||||
}
|
||||
,
|
||||
getUserApplications() {
|
||||
return axios.get('/userApplications')
|
||||
|
||||
}
|
||||
,
|
||||
updateSelectedProject(data) {
|
||||
return axios.post('/updateSelectedProject', data)
|
||||
|
||||
}
|
||||
,
|
||||
updateSelectedApplication(data) {
|
||||
return axios.post('/updateSelectedApplication', data)
|
||||
}
|
||||
|
||||
/* {
|
||||
projectName: selectedProjectName
|
||||
}*/
|
||||
}
|
||||
Reference in New Issue
Block a user