mirror of
https://github.com/sasjs/server.git
synced 2026-01-06 22:20:06 +00:00
fix: update api calls from client side
This commit is contained in:
@@ -22,7 +22,7 @@ const Main = (props: any) => {
|
||||
if (props.selectedFilePath) {
|
||||
setIsLoading(true)
|
||||
axios
|
||||
.get(`/SASjsApi/files?filePath=${props.selectedFilePath}`)
|
||||
.get(`/SASjsApi/drive/file?filePath=${props.selectedFilePath}`)
|
||||
.then((res: any) => {
|
||||
setFileContent(res.data.fileContent)
|
||||
})
|
||||
@@ -42,7 +42,7 @@ const Main = (props: any) => {
|
||||
} else {
|
||||
setIsLoading(true)
|
||||
axios
|
||||
.post(`/SASjsApi/files`, {
|
||||
.patch(`/SASjsApi/drive/file`, {
|
||||
filePath: props.selectedFilePath,
|
||||
fileContent: fileContent
|
||||
})
|
||||
|
||||
@@ -51,7 +51,7 @@ const SideBar = (props: any) => {
|
||||
|
||||
useEffect(() => {
|
||||
axios
|
||||
.get(`/SASjsApi/executor`)
|
||||
.get(`/SASjsApi/drive/fileTree`)
|
||||
.then((res: any) => {
|
||||
if (res.data && res.data?.status === 'success') {
|
||||
setDirectoryData(res.data.tree)
|
||||
|
||||
Reference in New Issue
Block a user