You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Get all the user or member keys associated with the removed providers.
1267
+
// Get all the user keys associated with the removed providers.
1268
1268
Sql<ISqlContext>idsQuery=SqlContext.Sql()
1269
1269
.Select<ExternalLoginDto>(x =>x.UserOrMemberKey)
1270
1270
.From<ExternalLoginDto>()
1271
+
.Where<ExternalLoginDto>(x =>!x.LoginProvider.StartsWith(Constants.Security.MemberExternalAuthenticationTypePrefix))// Only invalidate sessions relating to backoffice users, not members.
0 commit comments