public ActionResult Delete() { if (!Request.IsAuthorized()) { return(Unauthorized()); } Films.DeleteAll(); return(Ok("Ok")); }