public async Task <IActionResult> ChangeBackground([FromForm] IFormFile file)
 {
     return(Ok(await _configService.ChangeBackground(file)));
 }