Start basic LDAP server groundwork
This commit is contained in:
10
app/ldap/middleware/LDAPMiddleware.js
Normal file
10
app/ldap/middleware/LDAPMiddleware.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const { Injectable } = require('flitter-di')
|
||||
const ImplementationError = require('libflitter/errors/ImplementationError')
|
||||
|
||||
class LDAPMiddleware extends Injectable {
|
||||
async test(req, res, next) {
|
||||
throw new ImplementationError()
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = exports = LDAPMiddleware
|
||||
Reference in New Issue
Block a user