Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Fix social provider #509

Merged
merged 1 commit into from
Jul 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed initializers/.dataAccess.js.swp
Binary file not shown.
2 changes: 1 addition & 1 deletion initializers/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,7 @@ helper.getProviderId = function (provider, callback) {
if (provider.startsWith("ad") || provider.startsWith("auth0")) {
providerId = helper.socialProviders.ad;
}
if (provider.startsWith("samlp")) {
if (provider.startsWith("samlp") || provider.startsWith("adfs")) {
providerId = helper.socialProviders.samlp;
}
if (providerId) {
Expand Down