Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. We will have to modify this logic to be able to publish question sets only with "Approved" questions, and not re-create questions when the question set is re-published.

  2. We will add acceptedContributions and rejectedContributions attributes in creation-portal question-set schema.

  3. We use autoCreatorV2 flink job to copy contents from sourcing to consumption. Here we will add a check condition to validate if acceptedContributions attribute exists or not in question-set metadata.
    - If attribute exist, we follow the new flow, in which we will remove the rejected questions from
    question-set hierarchy and save to consumption.
    - If attribute does not exist, we will use the existing flow and save all questions in question-set to
    consumption irrespective of questions approval and rejection.

DB Changes: ProgramTable

column_name

datatype

postgresql command

targetcollectionprimarycategories

jsonb

ALTER TABLE program ADD COLUMN targetCollectionPrimaryCategories jsonb;

DB Changes: Configuration Table

...