We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e1c525 + c0d3cb4 commit e7f89f3Copy full SHA for e7f89f3
src/platform/web/simple-user/simple-user-options.ts
@@ -68,6 +68,12 @@ export interface SimpleUserOptions {
68
*/
69
aor?: string;
70
71
+ /**
72
+ * If `true`, the user agent calls the `stop()` method on the window event `beforeunload`.
73
+ * @defaultValue `true`
74
+ */
75
+ autoStop?: boolean;
76
+
77
/**
78
* Delegate for SimpleUser.
79
src/platform/web/simple-user/simple-user.ts
@@ -44,6 +44,7 @@ export class SimpleUser {
44
// Session manager options
45
const sessionManagerOptions: SessionManagerOptions = {
46
aor: this.options.aor,
47
+ autoStop: this.options.autoStop,
48
delegate: {
49
onCallAnswered: () => this.delegate?.onCallAnswered?.(),
50
onCallCreated: (session: Session) => {
0 commit comments