本文整理汇总了TypeScript中Boom.notImplemented函数的典型用法代码示例。如果您正苦于以下问题:TypeScript notImplemented函数的具体用法?TypeScript notImplemented怎么用?TypeScript notImplemented使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了notImplemented函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: deleteUserApi
@route('delete', '/{id}')
@config({
auth: 'jwt'
})
deleteUserApi(request: hapi.Request, reply: hapi.IReply) {
reply(boom.notImplemented());
}
示例2: createUserApi
@post('/')
@config({
auth: 'jwt'
})
createUserApi(request: hapi.Request, reply: hapi.IReply) {
reply(boom.notImplemented());
}
示例3: updateUserApi
@put('/{id}')
@config({
auth: 'jwt'
})
updateUserApi(request: hapi.Request, reply: hapi.IReply) {
reply(boom.notImplemented());
}
示例4: getWebhooksApi
@get('/')
@config({
auth: 'jwt'
})
getWebhooksApi(request: hapi.Request, reply: hapi.IReply) {
// getWebhooks().then(categories => {
// reply({ data: categories });
// }).catch((err: Error) => {
// if (err.name === 'SequelizeConnectionError') {
// reply(boom.create(503, 'Bad Connection'));
// } else {
// reply(boom.create(503, err.message));
// }
// });
reply(boom.notImplemented());
}
示例5: updateWebhookApi
@put('/{id}')
@config({
auth: 'jwt'
})
updateWebhookApi(request: hapi.Request, reply: hapi.IReply) {
// let webhook = request.payload;
// updateWebhook(webhook).then(data => {
// reply({ message: 'saved', data });
// }).catch((err: Error) => {
// if (err.name === 'SequelizeConnectionError') {
// reply(boom.create(503, 'Bad Connection'));
// } else {
// reply(boom.create(503, err.message));
// }
// });
reply(boom.notImplemented());
}
示例6: getWebhookApi
@get('/{id}')
@config({
auth: 'jwt'
})
getWebhookApi(request: hapi.Request, reply: hapi.IReply) {
// let webhookId = Number(request.params['id']);
// getWebhook(webhookId).then(webhook => {
// reply({ data: webhook });
// }).catch((err: Error) => {
// if (err.name === 'SequelizeConnectionError') {
// reply(boom.create(503, 'Bad Connection'));
// } else {
// reply(boom.create(503, err.message));
// }
// });
reply(boom.notImplemented());
}
示例7: deleteWebhookApi
@route('delete', '/{id}')
@config({
auth: 'jwt'
})
deleteWebhookApi(request: hapi.Request, reply: hapi.IReply) {
// let webhookId = Number(request.params['id']);
// deleteWebhook(webhookId).then(count => {
// if (count) {
// reply({ message: 'deleted', });
// } else {
// reply({ message: 'zero affected rows' });
// }
// }).catch((err: Error) => {
// if (err.name === 'SequelizeConnectionError') {
// reply(boom.create(503, 'Bad Connection'));
// } else {
// reply(boom.create(503, err.message));
// }
// });
reply(boom.notImplemented());
}
示例8: getAppConfig
export async function getAppConfig(server: Server, request: Request, reply: IReply)
{
return reply(Boom.notImplemented());
}
示例9: listAccounts
export async function listAccounts(server: Server, request: Request, reply: IReply)
{
return reply(notImplemented());
}
示例10: updateUser
export async function updateUser(server: Server, request: Request, reply: IReply)
{
return reply(notImplemented());
}