shuttlepro-shared 1.4.95 → 1.4.96
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/models/Workspace.js +5 -0
- package/package.json +1 -1
package/models/Workspace.js
CHANGED
|
@@ -375,6 +375,11 @@ const workspaceSchema = new mongoose.Schema(
|
|
|
375
375
|
type: Boolean,
|
|
376
376
|
default: false,
|
|
377
377
|
},
|
|
378
|
+
/** When false (default), after sending a message the reply panel stays open. When true, after a successful send the inline reply is closed (same as the X control). */
|
|
379
|
+
resolveChatAfterSending: {
|
|
380
|
+
type: Boolean,
|
|
381
|
+
default: false,
|
|
382
|
+
},
|
|
378
383
|
},
|
|
379
384
|
{ timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
|
|
380
385
|
);
|