import { RequestHandler } from "../entities/RequestHandler"; /** * Legacy calls controller * * @author Pierre HUBERT */ export class CallsController { /** * Get calls config * * This version of the API DOES NOT SUPPORT calls system for * now. It is planned to reimagine it completely before attempting * an implementation... */ public static GetConfig(h: RequestHandler) { h.send({ enabled: false }); } }