tournament logo upload via api

This commit is contained in:
yohlo
2025-08-24 13:50:48 -05:00
parent 466a3365f0
commit 936ab0ce72
13 changed files with 417 additions and 23 deletions

View File

@@ -36,7 +36,7 @@ export function transformTeam(record: any): Team {
return {
id: record.id,
name: record.name,
logo_url: record.logo_url,
logo: record.logo,
primary_color: record.primary_color,
accent_color: record.accent_color,
song_id: record.song_id,
@@ -67,7 +67,7 @@ export function transformTournament(record: any): Tournament {
location: record.location,
desc: record.desc,
rules: record.rules,
logo_url: record.logo_url,
logo: record.logo,
enroll_time: record.enroll_time,
start_time: record.start_time,
end_time: record.end_time,