summaryrefslogtreecommitdiff
path: root/frontend/src/api/routes/traces.js
blob: 140408b161e6eb5dfe0b4f3909da4b1ef2fa3016 (plain)
1
2
3
4
5
6
7
8
9
import { getAll, getById } from './util'

export function getAllTraces() {
    return getAll('/traces')
}

export function getJobsOfTrace(traceId) {
    return getById('/traces/{traceId}/jobs', { traceId })
}