Skip to content

Commit 603a09f

Browse files
committed
Merge branch 'main' of https://github.com/Josephcabs/code-differently-24-q4 into feature-Lesson03
2 parents 5baad5a + ecdb020 commit 603a09f

File tree

3 files changed

+11
-42
lines changed

3 files changed

+11
-42
lines changed

lesson_01/README copy

Lines changed: 0 additions & 41 deletions
This file was deleted.

lesson_03/quiz/quiz.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ quiz:
1010
- $2y$10$FmVJ1V9hSIUbi8DGx4cq5.wPOMq5en312H4zb5H2AJUDtDeWJg74e
1111
- $2y$10$vI6tL8o2P23w/bh5tYvyf.iiH42BQHl5Rh1teG8mMaMfj1XNhO/..
1212
- $2y$10$BSPejBBqvmV7iEilAy7kOOaBCtIVDWxfvH53b/v106qadbhQeQXEW
13+
yafiahAbdullah:
14+
- $2y$10$XcsVuO66KZiUiN75NtssdOkKvHKhuBo91JgE/TJEnSrrzbhjxuql.
15+
- $2y$10$9fZs867NHxoPQ/VWMeLyj.us5Kg3SLPcbt9O5ki/FdJ37TbhgFMFC
16+
- $2y$10$GfjcKvtzr6n8553Mdr1RJOOYDfzOudlW.3i8otsH0HiW52CU7tUAW

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@ import { Module } from '@nestjs/common';
22
import { AnotherQuiz } from './another_quiz.js';
33
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
44
import { JosephCaballeroQuiz } from './joseph_caballero_quiz.js';
5+
import { YafiahAbdullahQuiz } from './yafiah_abdullah_quiz.js';
56

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

89
// Add your quiz provider here.
9-
const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, JosephCaballeroQuiz];
10+
const QUIZ_PROVIDERS = [
11+
AnthonyMaysQuiz,
12+
YafiahAbdullahQuiz,
13+
AnotherQuiz,
14+
JosephCaballeroQuiz,
15+
];
1016

1117
@Module({
1218
providers: [

0 commit comments

Comments
 (0)