// // Copyright @ 2024 Hardcore Engineering Inc. // import { type QuestionInitFunction, type QuestionInitFunctionResult, type OrderingAssessment } from '@hcengineering/questions' import { type Hierarchy } from '@hcengineering/core' import type { ThemeOptions } from '@hcengineering/theme' import { OrderingQuestionInit } from './OrderingQuestionInit' export const OrderingAssessmentInit: QuestionInitFunction = async ( language: ThemeOptions['language'], hierarchy: Hierarchy ): Promise> => { return { ...(await OrderingQuestionInit(language, hierarchy)), assessmentData: { correctOrder: [1] } } }