DaffTestingLoginService
import { DaffTestingLoginService } from '@daffodil/auth/driver/testing'
@Injectable()
class DaffTestingLoginService implements DaffLoginServiceInterface<DaffLoginInfo, DaffAuthToken> {
login(loginInfo: DaffLoginInfo): Observable<DaffAuthToken>
logout(): Observable<void>
}
Properties
Name | Type | Description |
---|---|---|
login | Observable<DaffAuthToken> | Logs the user in. |
logout | Observable<void> | Logs the user out by revoking their access token. |