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