1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-23 22:09:23 +00:00
comunicapiv2/src/controllers/CallsController.ts

24 lines
436 B
TypeScript
Raw Normal View History

2019-12-28 15:58:06 +00:00
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
});
}
}