コード例 #1
0
        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)));
        }