turniere-backend/app/serializers/match_score_serializer.rb

9 lines
141 B
Ruby

# frozen_string_literal: true
class MatchScoreSerializer < ApplicationSerializer
attributes :points
has_one :team
has_one :match
end