websockets implemented

This commit is contained in:
Torsten Schulz
2024-12-04 19:08:26 +01:00
parent d46a51db38
commit 069c97fa90
64 changed files with 2488 additions and 562 deletions

View File

@@ -156,7 +156,7 @@ class SettingsService extends BaseService{
include: [
{
model: UserParamType,
as: 'user_param_type',
as: 'user_param_value_type',
where: { description: type }
}
]
@@ -264,7 +264,6 @@ class SettingsService extends BaseService{
async updateVisibility(hashedUserId, userParamTypeId, visibilityId) {
try {
const user = await this.getUserByHashedId(hashedUserId);
console.log(JSON.stringify(user));
if (!user) {
throw new Error('User not found');
}