| 1692 | |
| 1693 | |
| 1694 | class ItemFlingEffectDetailSerializer(serializers.ModelSerializer): |
| 1695 | effect_entries = ItemFlingEffectEffectTextSerializer( |
| 1696 | many=True, read_only=True, source="itemflingeffecteffecttext" |
| 1697 | ) |
| 1698 | items = ItemSummarySerializer(many=True, read_only=True, source="item") |
| 1699 | |
| 1700 | class Meta: |
| 1701 | model = ItemFlingEffect |
| 1702 | fields = ("id", "name", "effect_entries", "items") |
| 1703 | |
| 1704 | |
| 1705 | ####################### |
nothing calls this directly
no test coverage detected