19 lines
499 B
JavaScript
19 lines
499 B
JavaScript
import Unknown from './unknown';
|
|
export default class UnknownBackend extends Unknown {
|
|
getConfigAndInstance(application) {
|
|
return {};
|
|
}
|
|
async composeFileUrlBackend(options) {
|
|
const { application, extraFile, context, style } = options;
|
|
return extraFile.extra1;
|
|
}
|
|
async formUploadMeta(application, extraFile) {
|
|
}
|
|
async checkWhetherSuccess(application, extraFile) {
|
|
return true;
|
|
}
|
|
async removeFile(application, extraFile) {
|
|
}
|
|
}
|
|
;
|