| 1234567891011121314151617181920212223242526272829303132333435 |
- import { DeepPartial } from '@vendure/common/lib/shared-types';
- import { ChildEntity, Column, Index, ManyToOne } from 'typeorm';
- import { User } from '../user/user.entity';
- import { Session } from './session.entity';
- /**
- * @description
- * An AuthenticatedSession is created upon successful authentication.
- *
- * @docsCategory entities
- */
- @ChildEntity()
- export class AuthenticatedSession extends Session {
- constructor(input: DeepPartial<AuthenticatedSession>) {
- super(input);
- }
- /**
- * @description
- * The {@link User} who has authenticated to create this session.
- */
- @Index()
- @ManyToOne(type => User)
- user: User;
- /**
- * @description
- * The name of the {@link AuthenticationStrategy} used when authenticating
- * to create this session.
- */
- @Column()
- authenticationStrategy: string;
- }
|