Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions rust/agama-lib/share/profile.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,31 @@
"registrationUrl": {
"title": "URL of the registration server",
"type": "string"
},
"addons": {
"title": "List of add-ons to activate",
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id"],
"properties": {
"id": {
"title": "Add-on identifier",
"type": "string",
"examples": ["sle-ha"]
},
"version": {
"title": "Version of the add-on",
Comment thread
imobachgs marked this conversation as resolved.
"description": "It is mandatory if there are multiple available versions",
"type": "string"
},
"registrationCode": {
"title": "Add-on registration code",
"type": "string"
}
}
}
}
}
},
Expand Down
5 changes: 5 additions & 0 deletions rust/package/agama.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed May 7 12:52:42 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

- Add validation of the product/addons section (gh#agama-project/agama#2336).

-------------------------------------------------------------------
Wed May 7 06:35:19 UTC 2025 - José Iván López González <jlopez@suse.com>

Expand Down
Loading