Skip to content

Commit bcd6df0

Browse files
committed
fix: make markKeyForNotDeletion/markKeyForDeletion methods public
1 parent d5208bf commit bcd6df0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ export default class UploadPlugin extends AdminForthPlugin {
9797
await fn.call(adapter, filePath);
9898
}
9999

100-
private markKeyForNotDeletion(filePath: string) {
100+
public markKeyForNotDeletion(filePath: string) {
101101
return this.callStorageAdapter('markKeyForNotDeletion', 'markKeyForNotDeletation', filePath);
102102
}
103-
104-
private markKeyForDeletion(filePath: string) {
103+
104+
public markKeyForDeletion(filePath: string) {
105105
return this.callStorageAdapter('markKeyForDeletion', 'markKeyForDeletation', filePath);
106106
}
107107

0 commit comments

Comments
 (0)