fix property name

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
Björn Schiessle 2018-08-03 09:34:13 +02:00
parent f04ed98b21
commit d055a0dafb
No known key found for this signature in database
GPG Key ID: 2378A753E2BF04F6
1 changed files with 2 additions and 2 deletions

View File

@ -337,7 +337,7 @@ class SAMLController extends Controller {
$loginUrls = [];
if ($this->settings->allowMultipleUserBackEnds()) {
if ($this->SAMLSettings->allowMultipleUserBackEnds()) {
$loginUrls['directLogin'] = [
'url' => $this->getDirectLoginUrl(),
'display-name' => $this->l->t('Direct log in')
@ -357,7 +357,7 @@ class SAMLController extends Controller {
*/
private function getIdps($redirectUrl) {
$result = [];
$idps = $this->settings->getListOfIdps();
$idps = $this->SAMLSettings->getListOfIdps();
foreach ($idps as $idpId => $displayName) {
$result[] = [
'url' => $this->getSSOUrl($redirectUrl, $idpId),