Skip to content

Commit 0288175

Browse files
committed
quiz
1 parent 30af285 commit 0288175

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

lesson_03/quiz/quiz.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ quiz:
66
anotherone:
77
- $2y$10$8eHSzy3aCu4Ry3LzO9nWCeGpofSxsNVbnF.wCfn3ZADwQ6MEtN/KK
88
- $2y$10$dGB0CGv7.XQC5OqfyY6iXOiJsdVyxU3ve5YE0gt4m2I8P8H13lNXa
9-
chanelhuttquiz:
9+
chanelhutt:
1010
- $2y$10$RL0pFvQE0YDCxR.f7AFb5.P45m9x9t.0diyZ5mOnADWvBhiCJW4Ci
1111
- $2y$10$Bgkbza7Vq5z0qz4iMZWuJep6Vfxq1Zp/ddQuo.vLzmdNo84JCDaoa
12-
- $2y$10$hYXAGlRHPLJME/CM556vouvwDwcUts.kH4zRRZk.jQyFQEzC9FkVa
12+
- $2y$10$hYXAGlRHPLJME/CM556vouvwDwcUts.kH4zRRZk.jQyFQEzC9FkVa

lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class ChanelHuttQuiz implements QuizQuestionProvider {
1111
}
1212

1313
makeQuizQuestions(): QuizQuestion[] {
14-
return [ChanelHuttQuiz.makeQuestion0(),ChanelHuttQuiz.makeQuestion1(),ChanelHuttQuiz.makeQuestion2(),];
14+
return [ChanelHuttQuiz.makeQuestion0(),ChanelHuttQuiz.makeQuestion1(),ChanelHuttQuiz.makeQuestion2()];
1515
}
1616

1717
private static makeQuestion0(): QuizQuestion {

lesson_03/quiz/src/quizzes/quizzes.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { Module } from '@nestjs/common';
22
import { AnotherQuiz } from './another_quiz.js';
33
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
4+
import { ChanelHuttQuiz } from './Chanel_Hutt_quiz.js';
45

56
export const Quizzes = Symbol.for('Quizzes');
67

78
// Add your quiz provider here.
8-
const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz];
9+
const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, ChanelHuttQuiz];
910

1011
@Module({
1112
providers: [

0 commit comments

Comments
 (0)