Use repository id on image creation

On image creation use the id to identify repositories instead of the IP.

ogServer related commit:
  * 52a38d3 ("#915 Use the repository id on image creation")
multi-ogserver
Javier Sánchez Parra 2022-06-23 14:01:41 +02:00
parent 61bd6bc4ba
commit eb61229b29
1 changed files with 2 additions and 2 deletions

View File

@ -982,7 +982,7 @@ def action_image_create():
"partition": partition,
"code": code,
"name": form.name.data,
"repository": form.repository.data,
"repository_id": int(form.repository.data),
"id": "0", # This is ignored by the server.
"description": form.description.data,
"group_id": 0, # Default group.
@ -1016,7 +1016,7 @@ def action_image_create():
repositories = get_repositories()
for repo in repositories:
form.repository.choices.append((repo['ip'], repo['name']))
form.repository.choices.append((repo['id'], repo['name']))
scopes, clients = get_scopes(set(ips))
return render_template('actions/image_create.html', form=form,