public ActionResult Feeds()
        {
            string secretKeyInput = Request.Form["secret_key_input"];

            DBConnectionService db   = new DBConnectionService();
            SyndicationFeed     feed = db.GetFeed(secretKeyInput);

            TempData["SecretKey"] = secretKeyInput;

            return(View(model: feed));
        }