2021-04-07 16:15:05 +02:00
|
|
|
const jwt = require("./passport/jwt")
|
|
|
|
const local = require("./passport/local")
|
|
|
|
const google = require("./passport/google")
|
2021-04-11 12:35:55 +02:00
|
|
|
const authenticated = require("./authenticated")
|
2021-05-28 11:09:32 +02:00
|
|
|
const auditLog = require("./auditLog")
|
2021-04-07 12:33:16 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
google,
|
|
|
|
jwt,
|
|
|
|
local,
|
2021-04-11 12:35:55 +02:00
|
|
|
authenticated,
|
2021-05-28 11:09:32 +02:00
|
|
|
auditLog,
|
2021-04-07 12:33:16 +02:00
|
|
|
}
|