diff options
author | Unknwon <u@gogs.io> | 2015-09-03 06:48:52 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-09-03 06:48:52 -0400 |
commit | 7ec991326d550957b278475057965e197f6e0324 (patch) | |
tree | 1e1972d0a1c92296d1c88ce855780bfc545bac83 /modules/auth/repo_form.go | |
parent | e5b105e513cb8bfe728c451525d1d9fd7d0979eb (diff) | |
download | gitea-7ec991326d550957b278475057965e197f6e0324.tar.gz gitea-7ec991326d550957b278475057965e197f6e0324.zip |
fix migrate api
Diffstat (limited to 'modules/auth/repo_form.go')
-rw-r--r-- | modules/auth/repo_form.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 4d90074386..d051aed424 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -32,14 +32,14 @@ func (f *CreateRepoForm) Validate(ctx *macaron.Context, errs binding.Errors) bin } type MigrateRepoForm struct { - CloneAddr string `binding:"Required"` - AuthUsername string - AuthPassword string - Uid int64 `binding:"Required"` - RepoName string `binding:"Required;AlphaDashDot;MaxSize(100)"` - Private bool - Mirror bool - Description string `binding:"MaxSize(255)"` + CloneAddr string `json:"clone_addr" binding:"Required"` + AuthUsername string `json:"auth_username"` + AuthPassword string `json:"auth_password"` + Uid int64 `json:"uid" binding:"Required"` + RepoName string `json:"repo_name" binding:"Required;AlphaDashDot;MaxSize(100)"` + Private bool `json:"mirror"` + Mirror bool `json:"private"` + Description string `json:"description" binding:"MaxSize(255)"` } func (f *MigrateRepoForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { |