Beispiel #1
0
        public async Task <List <AuthModel> > DeleteUser(string token, string sub)
        {
            if (await _repo.DeleteUser(sub))
            {
                return(await GetAllUsers());
            }
            // https://dev-yktazjo3.us.auth0.com/api/v2/users/auth0|60775937bc331e006ee50b9f
            // https://dev-yktazjo3.us.auth0.com/api/v2/users/auth0%7C60775937bc331e006ee50b9f
            // https://dev-yktazjo3.us.auth0.com/api/v2/users/auth0%60775d8d2ce19d006dfaf2d1
            // https://dev-yktazjo3.us.auth0.com/api/v2/users
            // https://dev-yktazjo3.us.auth0.com/api/v2/users

            // }
            return(null);
        }