Make patch_id field type 'integer'

This fiels should be integer, because it allows user clearly understand,
what exactly he should specify here. For example for patch:
https://review.fuel-infra.org/#/c/20409/ it should be number: 20409 .

Change-Id: I0e28eed0a08472ded26bbaae7c50f848b5a5bd00
This commit is contained in:
Sergey Kraynev 2016-07-20 18:49:36 +03:00
parent b963bcb61a
commit 75c710ef1c
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ Properties:
Contract: $.string() Contract: $.string()
Default: 'stable' Default: 'stable'
patchId: patchId:
Contract: $.string() Contract: $.int()
Methods: Methods:
installOnTheNode: installOnTheNode:
Arguments: Arguments:

View File

@ -35,10 +35,10 @@ Forms:
initial: stable initial: stable
type: string type: string
label: Branch Name label: Branch Name
description: Provide branch, which should be used for for system-config repo. description: Provide branch, which should be used for system-config repo.
required: false required: false
- name: patchId - name: patchId
type: string type: integer
label: Patch Id label: Patch Id
description: Provide Id of patchset, which will be used for system-config repo. description: Provide Id of patchset, which will be used for system-config repo.
required: false required: false