| 324 | |
| 325 | |
| 326 | class ItemAttributeMapSerializer(serializers.ModelSerializer): |
| 327 | item = ItemSummarySerializer() |
| 328 | attribute = ItemAttributeSummarySerializer(source="item_attribute") |
| 329 | |
| 330 | class Meta: |
| 331 | model = ItemAttributeMap |
| 332 | fields = ( |
| 333 | "item", |
| 334 | "attribute", |
| 335 | ) |
| 336 | |
| 337 | |
| 338 | class MoveMetaStatChangeSerializer(serializers.ModelSerializer): |
no test coverage detected