From bfc0ffa71b274e27106d6eeb8d543b2176fb5132 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Tue, 16 Sep 2025 22:14:01 +0200 Subject: [PATCH] refactor: Moved services & model into the according domains -- MOVE --- src/app/{ => chatroom}/chatroom.service.spec.ts | 0 src/app/{ => chatroom}/chatroom.service.ts | 0 src/app/{ => chatroom}/chatroom.ts | 0 src/app/{ => chatroom}/message.ts | 0 src/app/{ => user}/user.service.spec.ts | 0 src/app/{ => user}/user.service.ts | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename src/app/{ => chatroom}/chatroom.service.spec.ts (100%) rename src/app/{ => chatroom}/chatroom.service.ts (100%) rename src/app/{ => chatroom}/chatroom.ts (100%) rename src/app/{ => chatroom}/message.ts (100%) rename src/app/{ => user}/user.service.spec.ts (100%) rename src/app/{ => user}/user.service.ts (100%) diff --git a/src/app/chatroom.service.spec.ts b/src/app/chatroom/chatroom.service.spec.ts similarity index 100% rename from src/app/chatroom.service.spec.ts rename to src/app/chatroom/chatroom.service.spec.ts diff --git a/src/app/chatroom.service.ts b/src/app/chatroom/chatroom.service.ts similarity index 100% rename from src/app/chatroom.service.ts rename to src/app/chatroom/chatroom.service.ts diff --git a/src/app/chatroom.ts b/src/app/chatroom/chatroom.ts similarity index 100% rename from src/app/chatroom.ts rename to src/app/chatroom/chatroom.ts diff --git a/src/app/message.ts b/src/app/chatroom/message.ts similarity index 100% rename from src/app/message.ts rename to src/app/chatroom/message.ts diff --git a/src/app/user.service.spec.ts b/src/app/user/user.service.spec.ts similarity index 100% rename from src/app/user.service.spec.ts rename to src/app/user/user.service.spec.ts diff --git a/src/app/user.service.ts b/src/app/user/user.service.ts similarity index 100% rename from src/app/user.service.ts rename to src/app/user/user.service.ts -- 2.39.5