@@ -352,7 +352,7 @@ class Meta:
352352 )
353353
354354
355- class SourceInformationSerializer (
355+ class EAPSourceInformationSerializer (
356356 serializers .ModelSerializer ,
357357):
358358 id = serializers .IntegerField (required = False )
@@ -373,7 +373,7 @@ class Meta:
373373 fields = "__all__"
374374
375375
376- class ActionSerializer (serializers .ModelSerializer ):
376+ class EAPActionSerializer (serializers .ModelSerializer ):
377377 id = serializers .IntegerField (required = False )
378378
379379 class Meta :
@@ -560,15 +560,15 @@ class FullEAPSerializer(
560560 # admins
561561 key_actors = KeyActorSerializer (many = True , required = True )
562562
563- early_actions = ActionSerializer (many = True , required = False )
563+ early_actions = EAPActionSerializer (many = True , required = False )
564564 prioritized_impacts = ImpactSerializer (many = True , required = False )
565565
566566 # SOURCE OF INFORMATIONS
567- risk_analysis_source_of_information = SourceInformationSerializer (many = True , required = False )
568- trigger_statement_source_of_information = SourceInformationSerializer (many = True , required = False )
569- trigger_model_source_of_information = SourceInformationSerializer (many = True , required = False )
570- evidence_base_source_of_information = SourceInformationSerializer (many = True , required = False )
571- activation_process_source_of_information = SourceInformationSerializer (many = True , required = False )
567+ risk_analysis_source_of_information = EAPSourceInformationSerializer (many = True , required = False )
568+ trigger_statement_source_of_information = EAPSourceInformationSerializer (many = True , required = False )
569+ trigger_model_source_of_information = EAPSourceInformationSerializer (many = True , required = False )
570+ evidence_base_source_of_information = EAPSourceInformationSerializer (many = True , required = False )
571+ activation_process_source_of_information = EAPSourceInformationSerializer (many = True , required = False )
572572
573573 # IMAGES
574574 hazard_selection_images = EAPFileUpdateSerializer (
0 commit comments