Skip to content

Commit

Permalink
Merge pull request #89 from YoginiTayade/changeInResponseOfContentSearch
Browse files Browse the repository at this point in the history
added the contentSource in the response of the contentSEarch API
  • Loading branch information
ankush-maherwal authored Dec 17, 2024
2 parents 83bce8c + 5eb19bb commit f755054
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/adapters/hasura/altProgramAssociation.adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -575,12 +575,13 @@ export class ALTProgramAssociationService {
responseData.push({
contentId: item.contentId,
name: item.name,
subject: rule.subject || null,
courseId: item.courseId || null,
subject: rule.subject ,
courseId: item.courseId ,
contentType: item.contentType,
order: item.order,
allowedAttempts: item.allowedAttempts,
criteria: item.criteria,
contentSource: item.contentSource,
});
});
} else {
Expand Down

0 comments on commit f755054

Please sign in to comment.