Start auth framework
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-06-05 12:02:36 -05:00
parent c264d45927
commit 91abcdf8ef
13 changed files with 656 additions and 5 deletions

13
src/auth/index.ts Normal file
View File

@@ -0,0 +1,13 @@
export * from './types'
export * from './SecurityContext'
export * from './event/UserAuthenticatedEvent'
export * from './event/UserFlushedEvent'
export * from './contexts/SessionSecurityContext'
export * from './orm/ORMUser'
export * from './orm/ORMUserRepository'
export * from './Authentication'