예제 #1
0
        public async Task <IActionResult> GetInitialValues()
        {
            var signInContent = await _signInService.GetSignInContent();

            var signUpContent = await _signInService.GetSignUpContent();

            var theme = await _signInService.GetTheme();

            return(Ok(new
            {
                signInContent,
                signUpContent,
                theme
            }));
        }