Created
May 22, 2020 11:32
-
-
Save darahayes/0055311bc3da21c671c3d36707c96b59 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { KeycloakCrudService } from '@graphback/keycloak-authz' | |
class CustomCrudService extends KeycloakCrudService { | |
// custom implementation | |
} | |
const services = createKeycloakRuntimeContext({ | |
models, | |
schema: model, | |
db, | |
pubSub, | |
authConfig, | |
dataProvider: KnexDBDataProvider, | |
crudService: CustomCrudService | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment