* Add webauthn * Complete WebAuthn device sign up and login * Move device registration to account page * Replace the token login with a WebAuthn prompt if the current device has been registered * Mark the current device in the list of registered auth devices * Fix after rebase * Fix tests * Disable "Add current device" button if current device is registered * Add option to "Stay signed in" * Remove device list feature, sign in with deviceId instead * Improve usability * Update changelog Co-authored-by: Matthias Frey <mfrey43@gmail.com> Co-authored-by: Thomas <4159106+dtslvr@users.noreply.github.com>
19 lines
719 B
TypeScript
19 lines
719 B
TypeScript
import { AuthDeviceController } from '@ghostfolio/api/app/auth-device/auth-device.controller';
|
|
import { AuthDeviceService } from '@ghostfolio/api/app/auth-device/auth-device.service';
|
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
|
import { Module } from '@nestjs/common';
|
|
import { JwtModule } from '@nestjs/jwt';
|
|
|
|
@Module({
|
|
controllers: [AuthDeviceController],
|
|
imports: [
|
|
JwtModule.register({
|
|
secret: process.env.JWT_SECRET_KEY,
|
|
signOptions: { expiresIn: '180 days' }
|
|
})
|
|
],
|
|
providers: [AuthDeviceService, ConfigurationService, PrismaService]
|
|
})
|
|
export class AuthDeviceModule {}
|