예제 #1
0
        public DataAccessResponseType ResetLostPassword(string passwordClaimKey, string newPassword, string sharedClientKey)
        {
            // Ensure the clients are certified.
            if (sharedClientKey != Sahara.Core.Platform.Requests.RequestManager.SharedClientKey)
            {
                return(null);
            }

            return(PlatformUserManager.ResetPassword(passwordClaimKey, newPassword));
        }