예제 #1
0
        public IActionResult AuthorityInformation()
        {
            var userId = Int16.Parse(User.Claims.FirstOrDefault(x => x.Type == AccountConstant.userId).Value);

            return(Json(_authorityRepository.AuthorityInformation(userId)));
        }