@adminforth/user-soft-delete 1.2.16 → 1.2.17
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/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -94,7 +94,7 @@ export default class UserSoftDelete extends AdminForthPlugin {
|
|
|
94
94
|
instanceUniqueRepresentation(pluginOptions) {
|
|
95
95
|
// optional method to return unique string representation of plugin instance.
|
|
96
96
|
// Needed if plugin can have multiple instances on one resource
|
|
97
|
-
return `
|
|
97
|
+
return `single`;
|
|
98
98
|
}
|
|
99
99
|
setupEndpoints(server) {
|
|
100
100
|
server.endpoint({
|
package/index.ts
CHANGED
|
@@ -101,7 +101,7 @@ export default class UserSoftDelete extends AdminForthPlugin {
|
|
|
101
101
|
instanceUniqueRepresentation(pluginOptions: any) : string {
|
|
102
102
|
// optional method to return unique string representation of plugin instance.
|
|
103
103
|
// Needed if plugin can have multiple instances on one resource
|
|
104
|
-
return `
|
|
104
|
+
return `single`;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
setupEndpoints(server: IHttpServer) {
|