feat(ClientApplication): v13 add role connections

#9072 djs
This commit is contained in:
March 7th
2023-01-26 14:10:27 +07:00
parent 2c4df35bc1
commit 361352d773
10 changed files with 246 additions and 9 deletions

View File

@@ -57,6 +57,16 @@ class Application extends Base {
} else {
this.icon ??= null;
}
if ('role_connections_verification_url' in data) {
/**
* This application's role connection verification entry point URL
* @type {?string}
*/
this.roleConnectionsVerificationURL = data.role_connections_verification_url;
} else {
this.roleConnectionsVerificationURL ??= null;
}
}
/**