Start basic LDAP server groundwork
This commit is contained in:
10
app/models/LDAPBase.js
Normal file
10
app/models/LDAPBase.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const { Model } = require('flitter-orm')
|
||||
const ImplementationError = require('libflitter/errors/ImplementationError')
|
||||
|
||||
class LDAPBase extends Model {
|
||||
toLDAP() {
|
||||
throw new ImplementationError()
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = exports = LDAPBase
|
||||
Reference in New Issue
Block a user