I'm new to using Umbraco. I'm using Umbraco 7.11.1 (latest as of now).
I'm trying to extend login functionality for users, more specifically I want to perform additional actions during backoffice login process.
So far I created class to extend UsersMembershipProvider:
public class ExternalUsersMembershipProvider : UsersMembershipProvider
{
public override bool ValidateUser(string username, string password)
{
// custom logic
return base.ValidateUser(username, password);
}
}
ValidateUser doesn't get called
Hi,
I'm new to using Umbraco. I'm using Umbraco 7.11.1 (latest as of now). I'm trying to extend login functionality for users, more specifically I want to perform additional actions during backoffice login process.
So far I created class to extend UsersMembershipProvider:
web.config:
When trying to login, ValidateUser method doesn't seem to get executed at all.
Any ideas? Thanks.
Hi Janis
Did you fix this issue? Can you share with us?
Alex
is working on a reply...