mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
feat: Add precalculus course to catalog (#66089)
Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
@@ -19,6 +19,7 @@ enum Topic {
|
||||
InformationSecurity = 'information-security',
|
||||
ComputerFundamentals = 'computer-fundamentals',
|
||||
ComputerScience = 'computer-science',
|
||||
Math = 'math',
|
||||
Databases = 'databases',
|
||||
Bash = 'bash',
|
||||
Git = 'git',
|
||||
@@ -202,6 +203,12 @@ export const catalog: Catalog[] = [
|
||||
hours: 6,
|
||||
topic: Topic.ComputerScience
|
||||
},
|
||||
{
|
||||
superBlock: SuperBlocks.IntroductionToPrecalculus,
|
||||
level: Levels.Intermediate,
|
||||
hours: 6,
|
||||
topic: Topic.Math
|
||||
},
|
||||
{
|
||||
superBlock: SuperBlocks.IntroductionToBash,
|
||||
level: Levels.Intermediate,
|
||||
|
||||
@@ -368,6 +368,7 @@ export const superBlockToCertMap: {
|
||||
[SuperBlocks.CssAnimations]: null,
|
||||
[SuperBlocks.LearnPythonForBeginners]: null,
|
||||
[SuperBlocks.IntroductionToAlgorithmsAndDataStructures]: null,
|
||||
[SuperBlocks.IntroductionToPrecalculus]: null,
|
||||
[SuperBlocks.IntroductionToBash]: null,
|
||||
[SuperBlocks.IntroductionToSQLAndPostgreSQL]: null,
|
||||
[SuperBlocks.LearnBashScripting]: null,
|
||||
|
||||
@@ -67,6 +67,7 @@ export enum SuperBlocks {
|
||||
CssAnimations = 'css-animations',
|
||||
LearnPythonForBeginners = 'learn-python-for-beginners',
|
||||
IntroductionToAlgorithmsAndDataStructures = 'introduction-to-algorithms-and-data-structures',
|
||||
IntroductionToPrecalculus = 'introduction-to-precalculus',
|
||||
IntroductionToBash = 'introduction-to-bash',
|
||||
IntroductionToSQLAndPostgreSQL = 'introduction-to-sql-and-postgresql',
|
||||
LearnBashScripting = 'learn-bash-scripting',
|
||||
@@ -226,6 +227,7 @@ export const superBlockStages: StageMap = {
|
||||
SuperBlocks.CssAnimations,
|
||||
SuperBlocks.LearnPythonForBeginners,
|
||||
SuperBlocks.IntroductionToAlgorithmsAndDataStructures,
|
||||
SuperBlocks.IntroductionToPrecalculus,
|
||||
SuperBlocks.IntroductionToBash,
|
||||
SuperBlocks.IntroductionToSQLAndPostgreSQL,
|
||||
SuperBlocks.LearnBashScripting,
|
||||
|
||||
Reference in New Issue
Block a user