Feature: Password Reset Functionality #4

Merged
ChrisChrome merged 35 commits from dev into main 2025-11-21 22:33:23 -07:00
Showing only changes of commit cdaf08b449 - Show all commits

View file

@ -168,8 +168,8 @@ class FreepbxManager {
}`;
const variables = {
ext,
name,
ext
};
return await this.pbxCall(query, variables);
@ -180,7 +180,7 @@ class FreepbxManager {
const query = gql`
mutation updateExt($ext: ID!, $name: String, $password: String) {
updateExtension(input: {
name: $name
name: test
extensionId: $ext
extPassword: $password
}) {
@ -190,7 +190,7 @@ class FreepbxManager {
}`;
const variables = {
ext,
password,
password
};
return await this.pbxCall(query, variables);
}