summaryrefslogtreecommitdiff
path: root/src/api/routes/sections.js
blob: 5e1a077df3b81d29889a4c0eb550ae8c94a5e0e9 (plain)
1
2
3
4
5
import { getById } from "./util";

export function getSection(sectionId) {
  return getById("/sections/{sectionId}", { sectionId });
}