Example #1
0
        public ActionResult Delete([FromQuery(Name = "apikey")] string apikey)
        {
            if (apikey != "12345")
            {
                return(Forbid());
            }

            ImageStorage.ClearStorage();
            return(Ok());
        }