public IActionResult EmployeeProfile()

in cloud-run/rideshare-plus-website/RidesharePlus/Controllers/LLMController.cs [111:126]


    public IActionResult EmployeeProfile()
    {       
        DataStoreService dataStoreService = new DataStoreService();
        DataStoreModel dataStoreModel = dataStoreService.GetDataStore;

        if (dataStoreModel == null || dataStoreModel.LookerAILLM_Page_EmployeeProfile == null)
        {
            return RedirectToAction("Configure", "LLM");
        }
        else
        {
            Models.LLMVisualizeViewModel llmVisualizeViewModel = new LLMVisualizeViewModel();
            llmVisualizeViewModel.LookerEmbedUrl = dataStoreModel.LookerAILLM_Page_EmployeeProfile;
            return View("employee-profile", llmVisualizeViewModel);
        }   
    }