auth services implmented

This commit is contained in:
2025-07-25 22:46:37 +03:00
parent 8ca2d34dc6
commit b4b752ca3a
92 changed files with 5282 additions and 296 deletions

View File

@@ -1,11 +0,0 @@
-- CreateTable
CREATE TABLE "User" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
"email" TEXT NOT NULL,
CONSTRAINT "User_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "User_email_key" ON "User"("email");

View File

@@ -1,3 +0,0 @@
# Please do not edit this file manually
# It should be added in your version-control system (e.g., Git)
provider = "postgresql"

View File

@@ -1,8 +1,8 @@
import { Module } from '@nestjs/common';
import { PrismaService } from '@/prisma.service';
import { PrismaService } from '@/src/prisma.service';
@Module({
providers: [PrismaService],
exports: [PrismaService], // Dışarııyoruz ki başka modüller kullanabilsin
exports: [PrismaService],
})
export class PrismaModule {}

File diff suppressed because it is too large Load Diff