summaryrefslogtreecommitdiff
path: root/src/api/routes/room-types.js
blob: 8a3eac58d3452333556dc6cc950c6442369bc5eb (plain)
1
2
3
4
5
6
7
8
9
import { getAll, getById } from "./util";

export function getAvailableRoomTypes() {
  return getAll("/room-types");
}

export function getAllowedObjectsOfRoomType(name) {
  return getById("/room-types/{name}/allowed-objects", { name });
}