mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-19 18:18:27 -05:00
fix(client,curriculum): add lang property to Challenge type (#64552)
This commit is contained in:
@@ -326,6 +326,7 @@ exports.createSchemaCustomization = ({ actions }) => {
|
|||||||
instructions: String
|
instructions: String
|
||||||
isLastChallengeInBlock: Boolean
|
isLastChallengeInBlock: Boolean
|
||||||
isPrivate: Boolean
|
isPrivate: Boolean
|
||||||
|
lang: String
|
||||||
module: String
|
module: String
|
||||||
msTrophyId: String
|
msTrophyId: String
|
||||||
nodules: [Nodule]
|
nodules: [Nodule]
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ export type Challenge = {
|
|||||||
missing?: boolean;
|
missing?: boolean;
|
||||||
challengeFiles?: ChallengeFile[];
|
challengeFiles?: ChallengeFile[];
|
||||||
solutions?: ChallengeFile[][];
|
solutions?: ChallengeFile[][];
|
||||||
|
lang?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface BlockStructure {
|
export interface BlockStructure {
|
||||||
|
|||||||
Reference in New Issue
Block a user