Browse Source

fix calls that go rename missed

pull/1211/head
Dustin Willis Webber 10 years ago
parent
commit
5a4f314cf7
  1. 2
      routers/api/v1/repo.go

2
routers/api/v1/repo.go

@ -163,7 +163,7 @@ func MigrateRepo(ctx *middleware.Context, form auth.MigrateRepoForm) {
}
return
}
if !u.ValidtePassword(ctx.Query("password")) {
if !u.ValidatePassword(ctx.Query("password")) {
ctx.HandleAPI(422, "Username or password is not correct.")
return
}

Loading…
Cancel
Save