From 8c9338a5377c60c84cdee1f5781b3de5933bb3b0 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 12 Nov 2014 06:48:50 -0500 Subject: add personal access token panel #12 --- cmd/web.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'cmd') diff --git a/cmd/web.go b/cmd/web.go index b5690c87..6b0ee9ef 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -64,7 +64,7 @@ func checkVersion() { // Check dependency version. macaronVer := git.MustParseVersion(strings.Join(strings.Split(macaron.Version(), ".")[:3], ".")) - if macaronVer.LessThan(git.MustParseVersion("0.4.0")) { + if macaronVer.LessThan(git.MustParseVersion("0.4.2")) { log.Fatal(4, "Package macaron version is too old, did you forget to update?(github.com/Unknwon/macaron)") } i18nVer := git.MustParseVersion(i18n.Version()) @@ -199,6 +199,7 @@ func runWeb(*cli.Context) { m.Get("/ssh", user.SettingsSSHKeys) m.Post("/ssh", bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost) m.Get("/social", user.SettingsSocial) + m.Combo("/applications").Get(user.SettingsApplications).Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost) m.Route("/delete", "GET,POST", user.SettingsDelete) }, reqSignIn) m.Group("/user", func() { @@ -210,9 +211,6 @@ func runWeb(*cli.Context) { m.Get("/logout", user.SignOut) }) - // FIXME: Legacy - m.Get("/user/:username", ignSignIn, user.Profile) - // Gravatar service. avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg") os.MkdirAll("public/img/avatar/", os.ModePerm) -- cgit v1.2.3