public ActionResult ScoreDeletionLog(string adminKey) { if (adminKey != ConfigHelper.AdminKey) { return(Content("unauthorized access")); } var deletedRecords = _leaderboardService.GetAllDeletedRecords(); return(View(deletedRecords)); }