|
|
@ -443,7 +443,7 @@ const MasterCompany = ({ params }) => { |
|
|
|
|
|
|
|
|
|
|
|
// Delete Image Function
|
|
|
|
// Delete Image Function
|
|
|
|
const deleteImageHeader = async (id) => { |
|
|
|
const deleteImageHeader = async (id) => { |
|
|
|
const URL = IMAGE_DELETE(id, 'company_logo_header', companyID != '' ? companyID : 'undifined'); |
|
|
|
const URL = IMAGE_DELETE(id, 'company_logo_header'); |
|
|
|
await axios |
|
|
|
await axios |
|
|
|
.delete(URL, HEADER) |
|
|
|
.delete(URL, HEADER) |
|
|
|
.then(res => res) |
|
|
|
.then(res => res) |
|
|
@ -452,7 +452,7 @@ const MasterCompany = ({ params }) => { |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const deleteImageLogin = async (id) => { |
|
|
|
const deleteImageLogin = async (id) => { |
|
|
|
const URL = IMAGE_DELETE(id, 'company_logo_login', companyID != '' ? companyID : 'undifined'); |
|
|
|
const URL = IMAGE_DELETE(id, 'company_logo_login'); |
|
|
|
await axios |
|
|
|
await axios |
|
|
|
.delete(URL, HEADER) |
|
|
|
.delete(URL, HEADER) |
|
|
|
.then(res => res) |
|
|
|
.then(res => res) |
|
|
@ -461,7 +461,7 @@ const MasterCompany = ({ params }) => { |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const deleteImageFavicon = async (id) => { |
|
|
|
const deleteImageFavicon = async (id) => { |
|
|
|
const URL = IMAGE_DELETE(id, 'company_favicon', companyID != '' ? companyID : 'undifined'); |
|
|
|
const URL = IMAGE_DELETE(id, 'company_favicon'); |
|
|
|
await axios |
|
|
|
await axios |
|
|
|
.delete(URL, HEADER) |
|
|
|
.delete(URL, HEADER) |
|
|
|
.then(res => res) |
|
|
|
.then(res => res) |
|
|
@ -470,7 +470,7 @@ const MasterCompany = ({ params }) => { |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const deleteImageSlider = async (id) => { |
|
|
|
const deleteImageSlider = async (id) => { |
|
|
|
const URL = IMAGE_MULTIPLE_DELETE(id, 'company_slider_login', companyID != '' ? companyID : 'undifined'); |
|
|
|
const URL = IMAGE_MULTIPLE_DELETE(id, 'company_slider_login'); |
|
|
|
await axios |
|
|
|
await axios |
|
|
|
.delete(URL, HEADER) |
|
|
|
.delete(URL, HEADER) |
|
|
|
.then(res => res) |
|
|
|
.then(res => res) |
|
|
|