diff --git a/tools/tidal-api/config/campaigns.json b/tools/tidal-api/config/campaigns.json index 8463932..8d28b19 100644 --- a/tools/tidal-api/config/campaigns.json +++ b/tools/tidal-api/config/campaigns.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Campaigns Galaxy", "type": "campaigns", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "icon": "bullhorn" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/groups.json b/tools/tidal-api/config/groups.json index 152b33c..8d89867 100644 --- a/tools/tidal-api/config/groups.json +++ b/tools/tidal-api/config/groups.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Groups Galaxy", "type": "groups", - "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6" + "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", + "icon": "user-secret" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/references.json b/tools/tidal-api/config/references.json index 697861e..ad42ae4 100644 --- a/tools/tidal-api/config/references.json +++ b/tools/tidal-api/config/references.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal References Galaxy", "type": "references", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "icon": "list" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/software.json b/tools/tidal-api/config/software.json index 58bd485..328bc32 100644 --- a/tools/tidal-api/config/software.json +++ b/tools/tidal-api/config/software.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Software Galaxy", "type": "software", - "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7" + "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", + "icon": "file-code" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/tactic.json b/tools/tidal-api/config/tactic.json index 31d592c..0027c39 100644 --- a/tools/tidal-api/config/tactic.json +++ b/tools/tidal-api/config/tactic.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Tactic Galaxy", "type": "tactic", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "icon": "map" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/technique.json b/tools/tidal-api/config/technique.json index 4f72c96..674c656 100644 --- a/tools/tidal-api/config/technique.json +++ b/tools/tidal-api/config/technique.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Technique Galaxy", "type": "technique", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "icon": "user-ninja" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/models/galaxy.py b/tools/tidal-api/models/galaxy.py index 9b091e4..1946a4b 100644 --- a/tools/tidal-api/models/galaxy.py +++ b/tools/tidal-api/models/galaxy.py @@ -4,6 +4,7 @@ from dataclasses import dataclass, asdict @dataclass class Galaxy(): description: str + icon: str name: str namespace: str type: str