mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2024-11-23 13:59:22 +00:00
24 lines
436 B
TypeScript
24 lines
436 B
TypeScript
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
|
|
});
|
|
}
|
|
|
|
} |