Refactored how system fonts were loaded (at least covered for local development) so that instead of going through the api, they are instead resolved by using assets/fonts/{fontName}/{fontFile}.

This commit is contained in:
Joseph Milazzo 2024-07-13 11:52:23 -05:00
parent 9fae799c63
commit 58800c0b4e
88 changed files with 177 additions and 97 deletions

View file

@ -40,7 +40,7 @@ public class ThemeController : BaseApiController
_mapper = mapper;
}
[ResponseCache(CacheProfileName = "10Minute")]
[ResponseCache(CacheProfileName = ResponseCacheProfiles.TenMinute)]
[AllowAnonymous]
[HttpGet]
public async Task<ActionResult<IEnumerable<SiteThemeDto>>> GetThemes()