0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-01-11 00:50:27 -05:00
forgejo/vendor/code.gitea.io/sdk/gitea/user.go

26 lines
636 B
Go
Raw Normal View History

2016-11-07 08:53:13 -05:00
// 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 gitea
import (
"fmt"
)
// User represents a API user.
type User struct {
ID int64 `json:"id"`
2016-11-29 03:09:17 -05:00
UserName string `json:"login"`
2016-11-07 08:53:13 -05:00
FullName string `json:"full_name"`
Email string `json:"email"`
2016-11-29 03:09:17 -05:00
AvatarURL string `json:"avatar_url"`
2016-11-07 08:53:13 -05:00
}
2016-11-29 03:09:17 -05:00
// GetUserInfo get user info by user's name
2016-11-07 08:53:13 -05:00
func (c *Client) GetUserInfo(user string) (*User, error) {
u := new(User)
err := c.getParsedResponse("GET", fmt.Sprintf("/users/%s", user), nil, nil, u)
return u, err
}