This method can be described as follows:
@PostMapping signals that this method will respond to POST on URL /delete/videos/{videoId}
The @PathVariable extracts the videoId argument based on name matching
Using the videoId field, we pass it along to VideoService
If things work out, the method returns "redirect:/", a Spring MVC directive to issue an HTTP 302 Found, a soft redirect that bounces the user back to GET /