mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
12 lines
347 B
TypeScript
12 lines
347 B
TypeScript
|
|
import { Injectable } from '@nestjs/common';
|
||
|
|
import { AuthDto } from 'src/dtos/auth.dto';
|
||
|
|
import { BaseService } from 'src/services/base.service';
|
||
|
|
|
||
|
|
@Injectable()
|
||
|
|
export class AuthAdminService extends BaseService {
|
||
|
|
async unlinkAll(_auth: AuthDto) {
|
||
|
|
// TODO replace '' with null
|
||
|
|
await this.userRepository.updateAll({ oauthId: '' });
|
||
|
|
}
|
||
|
|
}
|