Beispiel #1
0
        public async Task <IActionResult> RegisterKahla(RegisterKahlaAddressModel model)
        {
            var result = await _oauthService.AppRegisterAsync(model.Email, model.Password, model.ConfirmPassword);

            return(Json(result));
        }
Beispiel #2
0
        public async Task <IActionResult> RegisterKahla(RegisterKahlaAddressModel model)
        {
            var result = await _accountService.AppRegisterAsync(await _appsContainer.AccessToken(), model.Email, model.Password, model.ConfirmPassword);

            return(Json(result));
        }