Search by login instead of full name
parent
ba0245b47c
commit
f7619d6a9f
|
@ -18,8 +18,8 @@ func AddUsersToTeam(apiKeys GiteaKeys, users []Account, team int) bool {
|
||||||
|
|
||||||
for i := 0; i < len(users); i++ {
|
for i := 0; i < len(users); i++ {
|
||||||
|
|
||||||
fullusername := url.PathEscape(fmt.Sprintf("%s", users[i].Full_name))
|
userlogin := url.PathEscape(fmt.Sprintf("%s", users[i].Login))
|
||||||
apiKeys.Command = "/api/v1/users/search?q=" + fullusername + "&access_token="
|
apiKeys.Command = "/api/v1/users/search?q=" + userlogin + "&access_token="
|
||||||
foundUsers := RequestSearchResults(apiKeys)
|
foundUsers := RequestSearchResults(apiKeys)
|
||||||
|
|
||||||
for j := 0; j < len(foundUsers.Data); j++ {
|
for j := 0; j < len(foundUsers.Data); j++ {
|
||||||
|
|
Loading…
Reference in New Issue