evorepo/main/fixtures/arches.json
Dan McGee 007b8d7573 Add 'required_signoffs' field to Arch model
This will indicate how many signoffs are required for packages of the
given architecture. Set the default to 2 as it currently stands.

Signed-off-by: Dan McGee <dan@archlinux.org>
2013-04-22 09:13:12 -05:00

30 lines
459 B
JSON

[
{
"pk": 1,
"model": "main.arch",
"fields": {
"agnostic": true,
"name": "any",
"required_signoffs": 2
}
},
{
"pk": 2,
"model": "main.arch",
"fields": {
"agnostic": false,
"name": "i686",
"required_signoffs": 1
}
},
{
"pk": 3,
"model": "main.arch",
"fields": {
"agnostic": false,
"name": "x86_64",
"required_signoffs": 2
}
}
]