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