You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
437 B
11 lines
437 B
/**
|
|
* 文件作用:保留发票判重模块的权限中间件入口。
|
|
* 职责范围:保持路由中间件链路稳定,并将请求继续交给后续控制器处理。
|
|
* 不负责:验证登录令牌;该工作由通用 auth 中间件完成。
|
|
* 不负责:校验财务部门权限;财务入口展示由前端 FINANCE_DEPARTMENT_ID 控制。
|
|
*/
|
|
'use strict';
|
|
|
|
module.exports = async (ctx, next) => {
|
|
await next();
|
|
};
|
|
|