Add Email Token to company

This commit is contained in:
2025-08-05 20:45:47 -07:00
parent eae0d3a6b3
commit eb27dfd6bf
4 changed files with 9 additions and 2 deletions
@@ -15,6 +15,7 @@ namespace BoredCareers.Controllers {
if (isLoggedIn()) {
Company? company = await _databaseService.GetCompany(CompanyID);
if (company != null) {
company.EmailToken = "";
return Ok(company);
}
return NotFound("Company doesn't exist");