@adminforth/upload 2.8.2 → 2.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.ts +3 -3
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -97,11 +97,11 @@ export default class UploadPlugin extends AdminForthPlugin {
|
|
|
97
97
|
await fn.call(adapter, filePath);
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+
public markKeyForNotDeletion(filePath: string) {
|
|
101
101
|
return this.callStorageAdapter('markKeyForNotDeletion', 'markKeyForNotDeletation', filePath);
|
|
102
102
|
}
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
|
|
104
|
+
public markKeyForDeletion(filePath: string) {
|
|
105
105
|
return this.callStorageAdapter('markKeyForDeletion', 'markKeyForDeletation', filePath);
|
|
106
106
|
}
|
|
107
107
|
|