Skip to content

Commit

Permalink
Merge pull request #417 from mbeps/development
Browse files Browse the repository at this point in the history
BUG FIX: Calculator blog not being shown
  • Loading branch information
mbeps authored Jul 21, 2024
2 parents db44f01 + 3101aa7 commit 7539a79
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions database/Blogs/BlogDatabaseKeys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ enum BlogDatabaseKeys {
DrumrollMusic = "report-drumroll-music",
Quizmify = "report-quizmify",
OsmosGame = "report-osmos-game",
CalculatorAssignment = "report-calculator-assignment",
}

export default BlogDatabaseKeys;
9 changes: 9 additions & 0 deletions database/Blogs/BlogsDatabaseMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,15 @@ const blogsMap: Database<BlogInterface> = {
skills: projectDatabaseMap[ProjectDatabaseKeys.OsmosGame].skills,
relatedMaterials: [ProjectDatabaseKeys.OsmosGame],
},
[BlogDatabaseKeys.CalculatorAssignment]: {
name: "Journey Building Calculator Assignment",
subtitle:
"This was an assignment where we were tested on Software Engineering principles.",
category: BlogCategoriesEnum.Projects,
skills:
projectDatabaseMap[ProjectDatabaseKeys.JavaCalculatorAssignment].skills,
relatedMaterials: [ProjectDatabaseKeys.JavaCalculatorAssignment],
},
};

/**
Expand Down

0 comments on commit 7539a79

Please sign in to comment.