If in doubt, see if there is a description in the Plugins wiki or, for that, a dedicated Authentication Page .
Each plugin has properties that override its behavior, in this case, simply override it with the available routes:
Plugins.Add(new AuthFeature(() => new AuthUserSession()) { IncludeAssignRoleServices = false });
This is a short hand for:
Plugins.Add(new AuthFeature(() => new AuthUserSession(), new IAuthProvider[] { ... }, ServiceRoutes = new Dictionary<Type, string[]> { { typeof(AuthService), new[]{"/auth", "/auth/{provider}"} },
The source code for AuthFeature is also useful for viewing the default values ββof each property.
mythz
source share