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
1 change: 1 addition & 0 deletions docs/developer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ category
* must contain one of the following values:

* **customization**
* **dashboard**
* **files**
* **games**
* **search**
Expand Down
1 change: 1 addition & 0 deletions nextcloudappstore/api/v1/release/info.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@

<xs:simpleType name="category">
<xs:restriction base="xs:string">
<xs:enumeration value="dashboard"/>
<xs:enumeration value="security"/>
<xs:enumeration value="customization"/>
<xs:enumeration value="files"/>
Expand Down
18 changes: 18 additions & 0 deletions nextcloudappstore/core/fixtures/categories.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,16 @@
"master": "workflow"
}
},
{
"model": "core.categorytranslation",
"pk": 15,
"fields": {
"language_code": "en",
"name": "Dashboard",
"description": "Apps including Nextcloud Dashboard widgets",
"master": "dashboard"
}
},
{
"model": "core.category",
"pk": "customization",
Expand Down Expand Up @@ -232,5 +242,13 @@
"created": "2019-11-18T14:20:12Z",
"last_modified": "2019-11-18T14:20:12Z"
}
},
{
"model": "core.category",
"pk": "dashboard",
"fields": {
"created": "2020-08-04T15:50:12Z",
"last_modified": "2020-08-04T15:50:12Z"
}
}
]
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% trans "Customization" %}
{% trans "Themes, layout and UX change apps" %}
{% trans "Dashboard" %}
{% trans "Apps including Nextcloud Dashboard widgets" %}
{% trans "Files" %}
{% trans "File management and Files app extension apps" %}
{% trans "Games" %}
Expand Down