/// Controller to back the User.Resource service, used for fetching user data when already authenticated. user.service is currently used for handling authentication
thrownewInvalidOperationException("No back office membership provider found with the name "+UmbracoConfig.For.UmbracoSettings().Providers.DefaultBackOfficeUserProvider);
}
returnprovider.GetConfiguration();
}
/// <summary>
/// Changes the users password
/// </summary>
/// <param name="data"></param>
/// <returns>
/// If the password is being reset it will return the newly reset password, otherwise will return an empty value
thrownewInvalidOperationException("No membership provider found with the name "+UmbracoConfig.For.UmbracoSettings().Providers.DefaultBackOfficeUserProvider);
}
//TODO: WE need to support this! - requires UI updates, etc...
if(userProvider.RequiresQuestionAndAnswer)
{
thrownewNotSupportedException("Currently the user editor does not support providers that have RequiresQuestionAndAnswer specified");