diff options
author | Unknwon <u@gogs.io> | 2015-12-04 17:16:42 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-12-04 17:16:42 -0500 |
commit | 56dd430a10bf5281caf648344e4660fbdc5d4dee (patch) | |
tree | 9493b1a9f77321525d62ce1ccefc4dd792391832 /routers/api/v1/user_app.go | |
parent | e0bae9547af03e5e7c0201faaa9568d6a1cc9e1f (diff) |
refactor API routes and some work for #976
Diffstat (limited to 'routers/api/v1/user_app.go')
-rw-r--r-- | routers/api/v1/user_app.go | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/routers/api/v1/user_app.go b/routers/api/v1/user_app.go deleted file mode 100644 index c1b83d60..00000000 --- a/routers/api/v1/user_app.go +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright 2014 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package v1 - -import ( - api "github.com/gogits/go-gogs-client" - - "github.com/gogits/gogs/models" - "github.com/gogits/gogs/modules/middleware" -) - -// https://github.com/gogits/go-gogs-client/wiki/Users#list-access-tokens-for-a-user -func ListAccessTokens(ctx *middleware.Context) { - tokens, err := models.ListAccessTokens(ctx.User.Id) - if err != nil { - ctx.APIError(500, "ListAccessTokens", err) - return - } - - apiTokens := make([]*api.AccessToken, len(tokens)) - for i := range tokens { - apiTokens[i] = &api.AccessToken{tokens[i].Name, tokens[i].Sha1} - } - ctx.JSON(200, &apiTokens) -} - -type CreateAccessTokenForm struct { - Name string `json:"name" binding:"Required"` -} - -// https://github.com/gogits/go-gogs-client/wiki/Users#create-a-access-token -func CreateAccessToken(ctx *middleware.Context, form CreateAccessTokenForm) { - t := &models.AccessToken{ - UID: ctx.User.Id, - Name: form.Name, - } - if err := models.NewAccessToken(t); err != nil { - ctx.APIError(500, "NewAccessToken", err) - return - } - ctx.JSON(201, &api.AccessToken{t.Name, t.Sha1}) -} |