├── .gitignore ├── README.md ├── app ├── .gitignore ├── .vscode │ └── extensions.json ├── README.md ├── env.d.ts ├── index.html ├── package.json ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── assets │ │ ├── base.css │ │ ├── logo.svg │ │ └── main.css │ ├── components │ │ ├── HelloWorld.vue │ │ ├── TheWelcome.vue │ │ ├── WelcomeItem.vue │ │ └── icons │ │ │ ├── IconCommunity.vue │ │ │ ├── IconDocumentation.vue │ │ │ ├── IconEcosystem.vue │ │ │ ├── IconSupport.vue │ │ │ └── IconTooling.vue │ ├── main.ts │ ├── router │ │ └── index.ts │ ├── stores │ │ └── counter.ts │ └── views │ │ ├── AboutView.vue │ │ └── HomeView.vue ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── backmanger ├── .gitignore ├── .vscode │ └── extensions.json ├── README.md ├── dist │ ├── assets │ │ ├── bg-Ccj7DF2B.jpg │ │ ├── create-B7odmZ_K.js │ │ ├── create-CABnjeqU.css │ │ ├── hooks-DGTDKDMV.js │ │ ├── index-BENb7eg2.js │ │ ├── index-BHQO7ODh.js │ │ ├── index-BphpIRfH.js │ │ ├── index-C1hh7dcC.js │ │ ├── index-CACTaSOq.css │ │ ├── index-COYrsJrE.css │ │ ├── index-CQlCNhaL.css │ │ ├── index-CgRR7fKr.js │ │ ├── index-CoY8a9Sg.js │ │ ├── index-Cw5ahS-Z.js │ │ ├── index-D7Efwe2T.js │ │ ├── index-DGRHULib.css │ │ ├── index-DOsF3NFu.js │ │ ├── index-Dj0m8xO2.js │ │ ├── index-TakMx3zO.css │ │ └── knowledgeHooks-CznZjvcB.js │ ├── favicon.ico │ └── index.html ├── env.d.ts ├── index.html ├── package.json ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── apis │ │ ├── course │ │ │ ├── code.ts │ │ │ └── index.ts │ │ ├── grade │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── knowledge │ │ │ └── index.ts │ │ ├── login │ │ │ └── index.ts │ │ ├── route │ │ │ └── index.ts │ │ ├── subject │ │ │ └── index.ts │ │ └── user │ │ │ └── index.ts │ ├── assets │ │ ├── background │ │ │ └── bg.jpg │ │ └── css │ │ │ └── reset.css │ ├── components │ │ └── Editor.vue │ ├── config │ │ └── index.ts │ ├── layout │ │ ├── Content │ │ │ └── index.vue │ │ ├── Header │ │ │ └── index.vue │ │ ├── Menu │ │ │ └── index.vue │ │ └── index.vue │ ├── main.ts │ ├── router │ │ ├── course │ │ │ └── index.ts │ │ ├── home │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── knowledge │ │ │ └── index.ts │ │ ├── login │ │ │ └── index.ts │ │ ├── question │ │ │ └── index.ts │ │ ├── subject │ │ │ └── index.ts │ │ └── user │ │ │ └── index.ts │ ├── stores │ │ └── menu │ │ │ └── index.ts │ ├── utils │ │ └── time.ts │ └── views │ │ ├── Index.vue │ │ ├── course │ │ ├── code │ │ │ ├── create.vue │ │ │ ├── hooks.ts │ │ │ └── index.vue │ │ ├── create.vue │ │ ├── index.vue │ │ └── type.ts │ │ ├── home │ │ └── index.vue │ │ ├── knowledge │ │ ├── index.vue │ │ ├── knowledgeHooks.ts │ │ └── treeHooks.ts │ │ ├── login │ │ └── index.vue │ │ ├── question │ │ ├── components │ │ │ ├── FillInTheBlanks.vue │ │ │ ├── MultipleChoice.vue │ │ │ ├── MultipleChoiceQuestions.vue │ │ │ ├── ReadingQuestion.vue │ │ │ ├── ShortAnswer.vue │ │ │ ├── TrueOfFalse.vue │ │ │ └── index.vue │ │ ├── create.vue │ │ ├── hooks │ │ │ └── index.ts │ │ └── index.vue │ │ ├── subject │ │ ├── create.vue │ │ ├── hooks │ │ │ ├── gradeHooks.ts │ │ │ └── subjectHooks.ts │ │ └── index.vue │ │ └── user │ │ ├── create.vue │ │ ├── hooks │ │ └── index.ts │ │ └── index.vue ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── config ├── course │ ├── index.js │ └── index.ts ├── database │ ├── index.js │ └── index.ts ├── grade │ ├── index.js │ └── index.ts ├── index.js ├── index.ts ├── package.json ├── port │ ├── index.js │ └── index.ts ├── secret │ ├── index.js │ └── index.ts ├── subject │ ├── index.js │ └── index.ts ├── tsconfig.json └── user │ ├── index.js │ └── index.ts ├── fs ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── package.json ├── src │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── course │ │ ├── course.controller.ts │ │ ├── course.module.ts │ │ ├── course.service.ts │ │ ├── dto │ │ │ ├── create-course.dto.ts │ │ │ └── update-course.dto.ts │ │ └── entities │ │ │ └── course.entity.ts │ └── main.ts ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── server ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── package-lock.json ├── package.json ├── src ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── auth │ ├── auth.controller.ts │ ├── auth.module.ts │ ├── auth.service.ts │ ├── guards │ │ ├── jwt-auth.guard.ts │ │ └── local-auth.guard.ts │ └── strategies │ │ ├── jwt.strategy.ts │ │ └── local.strategy.ts ├── course-code │ ├── course-code.controller.ts │ ├── course-code.module.ts │ ├── course-code.service.ts │ ├── dto │ │ ├── create-course-code.dto.ts │ │ └── update-course-code.dto.ts │ └── entities │ │ └── course-code.entity.ts ├── course │ ├── course.controller.ts │ ├── course.module.ts │ ├── course.service.ts │ ├── dto │ │ ├── create-course.dto.ts │ │ └── update-course.dto.ts │ └── entities │ │ └── course.entity.ts ├── db │ └── db.module.ts ├── enum │ └── authority.ts ├── env.d.ts ├── grade │ ├── dto │ │ ├── create-grade.dto.ts │ │ └── update-grade.dto.ts │ ├── entities │ │ └── grade.entity.ts │ ├── grade.controller.ts │ ├── grade.module.ts │ └── grade.service.ts ├── interceptor │ └── interceptor.interceptor.ts ├── knowledge │ ├── dto │ │ ├── create-knowledge.dto.ts │ │ └── update-knowledge.dto.ts │ ├── entities │ │ └── knowledge.entity.ts │ ├── knowledge.controller.ts │ ├── knowledge.module.ts │ └── knowledge.service.ts ├── main.ts ├── route │ ├── entities │ │ ├── route.children.ts │ │ └── route.entity.ts │ ├── route.controller.ts │ ├── route.module.ts │ ├── route.service.ts │ └── router │ │ └── index.ts ├── subject │ ├── dto │ │ ├── create-subject.dto.ts │ │ └── update-subject.dto.ts │ ├── entities │ │ └── subject.entity.ts │ ├── subject.controller.ts │ ├── subject.module.ts │ └── subject.service.ts └── user │ ├── dto │ ├── create-user.dto.ts │ └── update-user.dto.ts │ ├── entities │ └── user.entity.ts │ ├── user.controller.ts │ ├── user.module.ts │ └── user.service.ts ├── test ├── app.e2e-spec.ts ├── index.http └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/.vscode/extensions.json -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/README.md -------------------------------------------------------------------------------- /app/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/index.html -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/package.json -------------------------------------------------------------------------------- /app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/public/favicon.ico -------------------------------------------------------------------------------- /app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/App.vue -------------------------------------------------------------------------------- /app/src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/assets/base.css -------------------------------------------------------------------------------- /app/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/assets/logo.svg -------------------------------------------------------------------------------- /app/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/assets/main.css -------------------------------------------------------------------------------- /app/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /app/src/components/TheWelcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/components/TheWelcome.vue -------------------------------------------------------------------------------- /app/src/components/WelcomeItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/components/WelcomeItem.vue -------------------------------------------------------------------------------- /app/src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/components/icons/IconCommunity.vue -------------------------------------------------------------------------------- /app/src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/components/icons/IconDocumentation.vue -------------------------------------------------------------------------------- /app/src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/components/icons/IconEcosystem.vue -------------------------------------------------------------------------------- /app/src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/components/icons/IconSupport.vue -------------------------------------------------------------------------------- /app/src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/components/icons/IconTooling.vue -------------------------------------------------------------------------------- /app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/main.ts -------------------------------------------------------------------------------- /app/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/router/index.ts -------------------------------------------------------------------------------- /app/src/stores/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/stores/counter.ts -------------------------------------------------------------------------------- /app/src/views/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/views/AboutView.vue -------------------------------------------------------------------------------- /app/src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/src/views/HomeView.vue -------------------------------------------------------------------------------- /app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/tsconfig.app.json -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /app/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/tsconfig.node.json -------------------------------------------------------------------------------- /app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/app/vite.config.ts -------------------------------------------------------------------------------- /backmanger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/.gitignore -------------------------------------------------------------------------------- /backmanger/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/.vscode/extensions.json -------------------------------------------------------------------------------- /backmanger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/README.md -------------------------------------------------------------------------------- /backmanger/dist/assets/bg-Ccj7DF2B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/bg-Ccj7DF2B.jpg -------------------------------------------------------------------------------- /backmanger/dist/assets/create-B7odmZ_K.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/create-B7odmZ_K.js -------------------------------------------------------------------------------- /backmanger/dist/assets/create-CABnjeqU.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/create-CABnjeqU.css -------------------------------------------------------------------------------- /backmanger/dist/assets/hooks-DGTDKDMV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/hooks-DGTDKDMV.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-BENb7eg2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-BENb7eg2.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-BHQO7ODh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-BHQO7ODh.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-BphpIRfH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-BphpIRfH.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-C1hh7dcC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-C1hh7dcC.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-CACTaSOq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-CACTaSOq.css -------------------------------------------------------------------------------- /backmanger/dist/assets/index-COYrsJrE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-COYrsJrE.css -------------------------------------------------------------------------------- /backmanger/dist/assets/index-CQlCNhaL.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-CQlCNhaL.css -------------------------------------------------------------------------------- /backmanger/dist/assets/index-CgRR7fKr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-CgRR7fKr.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-CoY8a9Sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-CoY8a9Sg.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-Cw5ahS-Z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-Cw5ahS-Z.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-D7Efwe2T.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-D7Efwe2T.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-DGRHULib.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-DGRHULib.css -------------------------------------------------------------------------------- /backmanger/dist/assets/index-DOsF3NFu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-DOsF3NFu.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-Dj0m8xO2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-Dj0m8xO2.js -------------------------------------------------------------------------------- /backmanger/dist/assets/index-TakMx3zO.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/index-TakMx3zO.css -------------------------------------------------------------------------------- /backmanger/dist/assets/knowledgeHooks-CznZjvcB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/assets/knowledgeHooks-CznZjvcB.js -------------------------------------------------------------------------------- /backmanger/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/favicon.ico -------------------------------------------------------------------------------- /backmanger/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/dist/index.html -------------------------------------------------------------------------------- /backmanger/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/env.d.ts -------------------------------------------------------------------------------- /backmanger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/index.html -------------------------------------------------------------------------------- /backmanger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/package.json -------------------------------------------------------------------------------- /backmanger/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/public/favicon.ico -------------------------------------------------------------------------------- /backmanger/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/App.vue -------------------------------------------------------------------------------- /backmanger/src/apis/course/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/apis/course/code.ts -------------------------------------------------------------------------------- /backmanger/src/apis/course/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/apis/course/index.ts -------------------------------------------------------------------------------- /backmanger/src/apis/grade/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/apis/grade/index.ts -------------------------------------------------------------------------------- /backmanger/src/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/apis/index.ts -------------------------------------------------------------------------------- /backmanger/src/apis/knowledge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/apis/knowledge/index.ts -------------------------------------------------------------------------------- /backmanger/src/apis/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/apis/login/index.ts -------------------------------------------------------------------------------- /backmanger/src/apis/route/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/apis/route/index.ts -------------------------------------------------------------------------------- /backmanger/src/apis/subject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/apis/subject/index.ts -------------------------------------------------------------------------------- /backmanger/src/apis/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/apis/user/index.ts -------------------------------------------------------------------------------- /backmanger/src/assets/background/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/assets/background/bg.jpg -------------------------------------------------------------------------------- /backmanger/src/assets/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/assets/css/reset.css -------------------------------------------------------------------------------- /backmanger/src/components/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/components/Editor.vue -------------------------------------------------------------------------------- /backmanger/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/config/index.ts -------------------------------------------------------------------------------- /backmanger/src/layout/Content/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/layout/Content/index.vue -------------------------------------------------------------------------------- /backmanger/src/layout/Header/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/layout/Header/index.vue -------------------------------------------------------------------------------- /backmanger/src/layout/Menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/layout/Menu/index.vue -------------------------------------------------------------------------------- /backmanger/src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/layout/index.vue -------------------------------------------------------------------------------- /backmanger/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/main.ts -------------------------------------------------------------------------------- /backmanger/src/router/course/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/router/course/index.ts -------------------------------------------------------------------------------- /backmanger/src/router/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/router/home/index.ts -------------------------------------------------------------------------------- /backmanger/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/router/index.ts -------------------------------------------------------------------------------- /backmanger/src/router/knowledge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/router/knowledge/index.ts -------------------------------------------------------------------------------- /backmanger/src/router/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/router/login/index.ts -------------------------------------------------------------------------------- /backmanger/src/router/question/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/router/question/index.ts -------------------------------------------------------------------------------- /backmanger/src/router/subject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/router/subject/index.ts -------------------------------------------------------------------------------- /backmanger/src/router/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/router/user/index.ts -------------------------------------------------------------------------------- /backmanger/src/stores/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/stores/menu/index.ts -------------------------------------------------------------------------------- /backmanger/src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/utils/time.ts -------------------------------------------------------------------------------- /backmanger/src/views/Index.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backmanger/src/views/course/code/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/course/code/create.vue -------------------------------------------------------------------------------- /backmanger/src/views/course/code/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/course/code/hooks.ts -------------------------------------------------------------------------------- /backmanger/src/views/course/code/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/course/code/index.vue -------------------------------------------------------------------------------- /backmanger/src/views/course/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/course/create.vue -------------------------------------------------------------------------------- /backmanger/src/views/course/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/course/index.vue -------------------------------------------------------------------------------- /backmanger/src/views/course/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/course/type.ts -------------------------------------------------------------------------------- /backmanger/src/views/home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/home/index.vue -------------------------------------------------------------------------------- /backmanger/src/views/knowledge/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/knowledge/index.vue -------------------------------------------------------------------------------- /backmanger/src/views/knowledge/knowledgeHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/knowledge/knowledgeHooks.ts -------------------------------------------------------------------------------- /backmanger/src/views/knowledge/treeHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/knowledge/treeHooks.ts -------------------------------------------------------------------------------- /backmanger/src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/login/index.vue -------------------------------------------------------------------------------- /backmanger/src/views/question/components/FillInTheBlanks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/components/FillInTheBlanks.vue -------------------------------------------------------------------------------- /backmanger/src/views/question/components/MultipleChoice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/components/MultipleChoice.vue -------------------------------------------------------------------------------- /backmanger/src/views/question/components/MultipleChoiceQuestions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/components/MultipleChoiceQuestions.vue -------------------------------------------------------------------------------- /backmanger/src/views/question/components/ReadingQuestion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/components/ReadingQuestion.vue -------------------------------------------------------------------------------- /backmanger/src/views/question/components/ShortAnswer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/components/ShortAnswer.vue -------------------------------------------------------------------------------- /backmanger/src/views/question/components/TrueOfFalse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/components/TrueOfFalse.vue -------------------------------------------------------------------------------- /backmanger/src/views/question/components/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/components/index.vue -------------------------------------------------------------------------------- /backmanger/src/views/question/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/create.vue -------------------------------------------------------------------------------- /backmanger/src/views/question/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/hooks/index.ts -------------------------------------------------------------------------------- /backmanger/src/views/question/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/question/index.vue -------------------------------------------------------------------------------- /backmanger/src/views/subject/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/subject/create.vue -------------------------------------------------------------------------------- /backmanger/src/views/subject/hooks/gradeHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/subject/hooks/gradeHooks.ts -------------------------------------------------------------------------------- /backmanger/src/views/subject/hooks/subjectHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/subject/hooks/subjectHooks.ts -------------------------------------------------------------------------------- /backmanger/src/views/subject/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/subject/index.vue -------------------------------------------------------------------------------- /backmanger/src/views/user/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/user/create.vue -------------------------------------------------------------------------------- /backmanger/src/views/user/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/user/hooks/index.ts -------------------------------------------------------------------------------- /backmanger/src/views/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/src/views/user/index.vue -------------------------------------------------------------------------------- /backmanger/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/tsconfig.app.json -------------------------------------------------------------------------------- /backmanger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/tsconfig.json -------------------------------------------------------------------------------- /backmanger/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/tsconfig.node.json -------------------------------------------------------------------------------- /backmanger/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/backmanger/vite.config.ts -------------------------------------------------------------------------------- /config/course/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /config/course/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/course/index.ts -------------------------------------------------------------------------------- /config/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/database/index.js -------------------------------------------------------------------------------- /config/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/database/index.ts -------------------------------------------------------------------------------- /config/grade/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/grade/index.js -------------------------------------------------------------------------------- /config/grade/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/grade/index.ts -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/index.js -------------------------------------------------------------------------------- /config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/index.ts -------------------------------------------------------------------------------- /config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/package.json -------------------------------------------------------------------------------- /config/port/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/port/index.js -------------------------------------------------------------------------------- /config/port/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/port/index.ts -------------------------------------------------------------------------------- /config/secret/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/secret/index.js -------------------------------------------------------------------------------- /config/secret/index.ts: -------------------------------------------------------------------------------- 1 | export const projectSecret = '%^HUYBSDBLHUBHBDB?LU%^&*UXMZS*&&BUBEDEUB' -------------------------------------------------------------------------------- /config/subject/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/subject/index.js -------------------------------------------------------------------------------- /config/subject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/subject/index.ts -------------------------------------------------------------------------------- /config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/tsconfig.json -------------------------------------------------------------------------------- /config/user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/user/index.js -------------------------------------------------------------------------------- /config/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/config/user/index.ts -------------------------------------------------------------------------------- /fs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/.eslintrc.js -------------------------------------------------------------------------------- /fs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/.gitignore -------------------------------------------------------------------------------- /fs/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/.prettierrc -------------------------------------------------------------------------------- /fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/README.md -------------------------------------------------------------------------------- /fs/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/nest-cli.json -------------------------------------------------------------------------------- /fs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/package.json -------------------------------------------------------------------------------- /fs/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/src/app.controller.ts -------------------------------------------------------------------------------- /fs/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/src/app.module.ts -------------------------------------------------------------------------------- /fs/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/src/app.service.ts -------------------------------------------------------------------------------- /fs/src/course/course.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/src/course/course.controller.ts -------------------------------------------------------------------------------- /fs/src/course/course.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/src/course/course.module.ts -------------------------------------------------------------------------------- /fs/src/course/course.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/src/course/course.service.ts -------------------------------------------------------------------------------- /fs/src/course/dto/create-course.dto.ts: -------------------------------------------------------------------------------- 1 | export class CreateCourseDto {} 2 | -------------------------------------------------------------------------------- /fs/src/course/dto/update-course.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/src/course/dto/update-course.dto.ts -------------------------------------------------------------------------------- /fs/src/course/entities/course.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/src/course/entities/course.entity.ts -------------------------------------------------------------------------------- /fs/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/src/main.ts -------------------------------------------------------------------------------- /fs/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /fs/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/test/jest-e2e.json -------------------------------------------------------------------------------- /fs/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/tsconfig.build.json -------------------------------------------------------------------------------- /fs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/fs/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/.eslintrc.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/.prettierrc -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/README.md -------------------------------------------------------------------------------- /server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/nest-cli.json -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/app.controller.ts -------------------------------------------------------------------------------- /server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/app.module.ts -------------------------------------------------------------------------------- /server/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/app.service.ts -------------------------------------------------------------------------------- /server/src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /server/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/auth/auth.module.ts -------------------------------------------------------------------------------- /server/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/auth/auth.service.ts -------------------------------------------------------------------------------- /server/src/auth/guards/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/auth/guards/jwt-auth.guard.ts -------------------------------------------------------------------------------- /server/src/auth/guards/local-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/auth/guards/local-auth.guard.ts -------------------------------------------------------------------------------- /server/src/auth/strategies/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/auth/strategies/jwt.strategy.ts -------------------------------------------------------------------------------- /server/src/auth/strategies/local.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/auth/strategies/local.strategy.ts -------------------------------------------------------------------------------- /server/src/course-code/course-code.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course-code/course-code.controller.ts -------------------------------------------------------------------------------- /server/src/course-code/course-code.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course-code/course-code.module.ts -------------------------------------------------------------------------------- /server/src/course-code/course-code.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course-code/course-code.service.ts -------------------------------------------------------------------------------- /server/src/course-code/dto/create-course-code.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course-code/dto/create-course-code.dto.ts -------------------------------------------------------------------------------- /server/src/course-code/dto/update-course-code.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course-code/dto/update-course-code.dto.ts -------------------------------------------------------------------------------- /server/src/course-code/entities/course-code.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course-code/entities/course-code.entity.ts -------------------------------------------------------------------------------- /server/src/course/course.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course/course.controller.ts -------------------------------------------------------------------------------- /server/src/course/course.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course/course.module.ts -------------------------------------------------------------------------------- /server/src/course/course.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course/course.service.ts -------------------------------------------------------------------------------- /server/src/course/dto/create-course.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course/dto/create-course.dto.ts -------------------------------------------------------------------------------- /server/src/course/dto/update-course.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course/dto/update-course.dto.ts -------------------------------------------------------------------------------- /server/src/course/entities/course.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/course/entities/course.entity.ts -------------------------------------------------------------------------------- /server/src/db/db.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/db/db.module.ts -------------------------------------------------------------------------------- /server/src/enum/authority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/enum/authority.ts -------------------------------------------------------------------------------- /server/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/env.d.ts -------------------------------------------------------------------------------- /server/src/grade/dto/create-grade.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/grade/dto/create-grade.dto.ts -------------------------------------------------------------------------------- /server/src/grade/dto/update-grade.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/grade/dto/update-grade.dto.ts -------------------------------------------------------------------------------- /server/src/grade/entities/grade.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/grade/entities/grade.entity.ts -------------------------------------------------------------------------------- /server/src/grade/grade.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/grade/grade.controller.ts -------------------------------------------------------------------------------- /server/src/grade/grade.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/grade/grade.module.ts -------------------------------------------------------------------------------- /server/src/grade/grade.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/grade/grade.service.ts -------------------------------------------------------------------------------- /server/src/interceptor/interceptor.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/interceptor/interceptor.interceptor.ts -------------------------------------------------------------------------------- /server/src/knowledge/dto/create-knowledge.dto.ts: -------------------------------------------------------------------------------- 1 | export class CreateKnowledgeDto {} 2 | -------------------------------------------------------------------------------- /server/src/knowledge/dto/update-knowledge.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/knowledge/dto/update-knowledge.dto.ts -------------------------------------------------------------------------------- /server/src/knowledge/entities/knowledge.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/knowledge/entities/knowledge.entity.ts -------------------------------------------------------------------------------- /server/src/knowledge/knowledge.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/knowledge/knowledge.controller.ts -------------------------------------------------------------------------------- /server/src/knowledge/knowledge.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/knowledge/knowledge.module.ts -------------------------------------------------------------------------------- /server/src/knowledge/knowledge.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/knowledge/knowledge.service.ts -------------------------------------------------------------------------------- /server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/main.ts -------------------------------------------------------------------------------- /server/src/route/entities/route.children.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/route/entities/route.children.ts -------------------------------------------------------------------------------- /server/src/route/entities/route.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/route/entities/route.entity.ts -------------------------------------------------------------------------------- /server/src/route/route.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/route/route.controller.ts -------------------------------------------------------------------------------- /server/src/route/route.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/route/route.module.ts -------------------------------------------------------------------------------- /server/src/route/route.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/route/route.service.ts -------------------------------------------------------------------------------- /server/src/route/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/route/router/index.ts -------------------------------------------------------------------------------- /server/src/subject/dto/create-subject.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/subject/dto/create-subject.dto.ts -------------------------------------------------------------------------------- /server/src/subject/dto/update-subject.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/subject/dto/update-subject.dto.ts -------------------------------------------------------------------------------- /server/src/subject/entities/subject.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/subject/entities/subject.entity.ts -------------------------------------------------------------------------------- /server/src/subject/subject.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/subject/subject.controller.ts -------------------------------------------------------------------------------- /server/src/subject/subject.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/subject/subject.module.ts -------------------------------------------------------------------------------- /server/src/subject/subject.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/subject/subject.service.ts -------------------------------------------------------------------------------- /server/src/user/dto/create-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/user/dto/create-user.dto.ts -------------------------------------------------------------------------------- /server/src/user/dto/update-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/user/dto/update-user.dto.ts -------------------------------------------------------------------------------- /server/src/user/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/user/entities/user.entity.ts -------------------------------------------------------------------------------- /server/src/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/user/user.controller.ts -------------------------------------------------------------------------------- /server/src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/user/user.module.ts -------------------------------------------------------------------------------- /server/src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/src/user/user.service.ts -------------------------------------------------------------------------------- /server/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /server/test/index.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/test/index.http -------------------------------------------------------------------------------- /server/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/test/jest-e2e.json -------------------------------------------------------------------------------- /server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/tsconfig.build.json -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/QuestionBank/HEAD/server/tsconfig.json --------------------------------------------------------------------------------