Beispiel #1
0
        public ActionResult ScoreDeletionLog(string adminKey)
        {
            if (adminKey != ConfigHelper.AdminKey)
            {
                return(Content("unauthorized access"));
            }

            var deletedRecords = _leaderboardService.GetAllDeletedRecords();

            return(View(deletedRecords));
        }