mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 14:58:03 +02:00
Reinstate TODOs
This commit is contained in:
parent
856e1f1ca3
commit
6b28f3ea0d
2 changed files with 8 additions and 0 deletions
|
@ -144,6 +144,11 @@ void DialogsManager::showDomainLoginDialog() {
|
||||||
LoginDialog::showWithSelection();
|
LoginDialog::showWithSelection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// #######: TODO: Domain version of toggleLoginDialog()?
|
||||||
|
|
||||||
|
// #######: TODO: Domain version of hiadLoginDialog()?
|
||||||
|
|
||||||
|
|
||||||
void DialogsManager::showUpdateDialog() {
|
void DialogsManager::showUpdateDialog() {
|
||||||
UpdateDialog::show();
|
UpdateDialog::show();
|
||||||
}
|
}
|
||||||
|
|
|
@ -146,6 +146,9 @@ void LoginDialog::login(const QString& username, const QString& password) const
|
||||||
void LoginDialog::loginDomain(const QString& username, const QString& password, const QString& domainAuthProvider) const {
|
void LoginDialog::loginDomain(const QString& username, const QString& password, const QString& domainAuthProvider) const {
|
||||||
qDebug() << "Attempting to login" << username << "into a domain through" << domainAuthProvider;
|
qDebug() << "Attempting to login" << username << "into a domain through" << domainAuthProvider;
|
||||||
DependencyManager::get<DomainAccountManager>()->requestAccessToken(username, password, domainAuthProvider);
|
DependencyManager::get<DomainAccountManager>()->requestAccessToken(username, password, domainAuthProvider);
|
||||||
|
|
||||||
|
// ####### TODO: It may not be necessary to pass domainAuthProvider to the login dialog and through to here because it was
|
||||||
|
// originally provided to the QML from C++.
|
||||||
}
|
}
|
||||||
|
|
||||||
void LoginDialog::loginThroughOculus() {
|
void LoginDialog::loginThroughOculus() {
|
||||||
|
|
Loading…
Reference in a new issue