Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Challenge listing part 1 #18

Merged
merged 2 commits into from
May 3, 2021
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ workflows:
branches:
only:
- dev
- challenge-listing-part-1

# Production builds are exectuted only on tagged commits to the
# master branch.
Expand Down
12 changes: 12 additions & 0 deletions src/constants/apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import appDocumentationIcon from "../assets/images/learn.svg";
import appTaasIcon from "../assets/images/integrations.svg";
import myteamsIcon from "../assets/images/my-teams.svg";
import myteamsGreenIcon from "../assets/images/my-teams-green.svg";
import earnIcon from "../assets/images/earn.svg";

/**
* Micro-app categories
Expand Down Expand Up @@ -33,5 +34,16 @@ export const APP_CATEGORIES = [
menu: []
}
]
},
{
category: "Do",
apps: [
{
title: "Earn",
icon: earnIcon,
path: "/earn",
menu: [],
}
]
}
];