This commit is contained in:
2026-04-22 21:55:40 +03:30
parent 1a3a450960
commit f9e1ad69dc
85 changed files with 15644 additions and 4057 deletions
@@ -0,0 +1,14 @@
import { AuthService } from '@/modules/auth/auth.service'
import { Injectable } from '@nestjs/common'
import { applicationLoginDto } from './dto/auth.dto'
@Injectable()
export class ApplicationAuthService {
constructor(private readonly authService: AuthService) {}
async login(data: applicationLoginDto) {
const loginResponse = await this.authService.login(data, true)
return loginResponse
}
}