zhengyuxuan
2025-03-31 95798bbe8e398d3dd75926e18dfef2e14d1bc7cc
LifePayment/LifePayment.HttpApi/LifePay/UserRoleController.cs
@@ -40,6 +40,8 @@
        [HttpPost]
        public async Task<Guid> CreateBackClientUser(CreateBackClientUserInput input)
        {
            return await _accountService.CreateAccount(ObjectMapper.Map<CreateBackClientUserInput, CreateAccountInput>(input), isAdminCreate: true);
        }
@@ -197,5 +199,11 @@
            await _identityRoleService.DeleteAsync(id);
            return await _userRoleService.DeleteRole(id);
        }
        //[HttpGet]
        //public async Task<UserChannelOutput> GetUserChannel()
        //{
        //    return await _accountService.GetUserChannel();
        //}
    }
}