public ActionResult Unwatch(string RepositoryName, string Username) { if (!Authenticate()) { return(View("Login", GetBaseView("You need to authenticate before being able to unwatch a project"))); } Core.Models.Repository repo = BaseAPI.Unwatch(Username, RepositoryName); return(View("Get", GetBaseView(repo))); }