mirror of
https://github.com/jambonz/jambonz-api-server.git
synced 2026-07-04 19:21:53 +00:00
ed51d8b13f
major merge of features from the hosted branch that was created temporarily during the initial launch of jambonz.org
8 lines
228 B
JavaScript
8 lines
228 B
JavaScript
const router = require('express').Router();
|
|
const PredefinedCarrier = require('../../models/predefined-carrier');
|
|
const decorate = require('./decorate');
|
|
|
|
decorate(router, PredefinedCarrier, ['list']);
|
|
|
|
module.exports = router;
|