@carllewi2/sapcdc-ally-driver
Version:
A custom ally driver for SAPCDC
18 lines (14 loc) • 425 B
Markdown
The package has been configured successfully!
Make sure to first define the mapping inside the `contracts/ally.ts` file as follows.
```ts
import { SapcdcDriver, SapcdcDriverConfig } from 'sapcdc-ally-driver/build/standalone'
declare module '@ioc:Adonis/Addons/Ally' {
interface SocialProviders {
// ... other mappings
sapcdc: {
config: SapcdcDriverConfig
implementation: SapcdcDriver
}
}
}
```