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