mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 18:01:02 +00:00
client: Fix RepoPost path (#2091)
Closes https://github.com/woodpecker-ci/woodpecker/issues/2088
This commit is contained in:
parent
0314cb5ada
commit
235619e4a0
1 changed files with 2 additions and 1 deletions
|
@ -28,6 +28,7 @@ import (
|
||||||
const (
|
const (
|
||||||
pathSelf = "%s/api/user"
|
pathSelf = "%s/api/user"
|
||||||
pathRepos = "%s/api/user/repos"
|
pathRepos = "%s/api/user/repos"
|
||||||
|
pathRepoPost = "%s/api/repos?forge_remote_id=%d"
|
||||||
pathRepo = "%s/api/repos/%d"
|
pathRepo = "%s/api/repos/%d"
|
||||||
pathRepoLookup = "%s/api/repos/lookup/%s"
|
pathRepoLookup = "%s/api/repos/lookup/%s"
|
||||||
pathRepoMove = "%s/api/repos/%d/move?to=%s"
|
pathRepoMove = "%s/api/repos/%d/move?to=%s"
|
||||||
|
@ -174,7 +175,7 @@ func (c *client) RepoListOpts(sync, all bool) ([]*Repo, error) {
|
||||||
// RepoPost activates a repository.
|
// RepoPost activates a repository.
|
||||||
func (c *client) RepoPost(forgeRemoteID int64) (*Repo, error) {
|
func (c *client) RepoPost(forgeRemoteID int64) (*Repo, error) {
|
||||||
out := new(Repo)
|
out := new(Repo)
|
||||||
uri := fmt.Sprintf(pathRepo, c.addr, forgeRemoteID)
|
uri := fmt.Sprintf(pathRepoPost, c.addr, forgeRemoteID)
|
||||||
err := c.post(uri, nil, out)
|
err := c.post(uri, nil, out)
|
||||||
return out, err
|
return out, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue