You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
444 B
25 lines
444 B
import { API_ROOT } from 'config'
|
|
import { callApi } from 'helpers'
|
|
|
|
export type LandingMedia = {
|
|
logo_url: string,
|
|
}
|
|
|
|
type Args = {
|
|
sport_id: number,
|
|
tournament_id?: number,
|
|
}
|
|
|
|
export const getLandingLogo = async ({
|
|
sport_id,
|
|
tournament_id,
|
|
}: Args): Promise<LandingMedia> => {
|
|
const config = {
|
|
method: 'GET',
|
|
}
|
|
|
|
return callApi({
|
|
config,
|
|
url: `${API_ROOT}/v1/tournaments/${sport_id}/${tournament_id}/media`,
|
|
})
|
|
}
|
|
|