2019-07-16 08:40:01 +02:00
|
|
|
import path from 'path';
|
|
|
|
import config from '../../../partials/config';
|
|
|
|
|
|
|
|
export const authProfileConf = config({
|
|
|
|
auth: {
|
2021-03-14 08:42:46 +01:00
|
|
|
[`${path.join(__dirname, '../../../partials/plugin/authenticate.success')}`]: {}
|
2019-07-16 08:40:01 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export const authPluginFailureConf = config({
|
|
|
|
auth: {
|
2021-03-14 08:42:46 +01:00
|
|
|
[`${path.join(__dirname, '../../../partials/plugin/authenticate.fail')}`]: {}
|
2019-07-16 08:40:01 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export const authPluginPassThrougConf = config({
|
|
|
|
auth: {
|
2021-03-14 08:42:46 +01:00
|
|
|
[`${path.join(__dirname, '../../../partials/plugin/authenticate.passthroug')}`]: {}
|
2019-07-16 08:40:01 +02:00
|
|
|
}
|
|
|
|
});
|