15 lines
379 B
JavaScript
15 lines
379 B
JavaScript
/** @odoo-module **/
|
|
|
|
import { Voip } from "@voip/core/voip_service";
|
|
|
|
import { patch } from "@web/core/utils/patch";
|
|
|
|
patch(Voip.prototype, {
|
|
get areCredentialsSet() {
|
|
return Boolean(this.store.settings.rc_authorization_id) && super.areCredentialsSet;
|
|
},
|
|
get authorizationUsername() {
|
|
return this.store.settings.rc_authorization_id || "";
|
|
},
|
|
});
|