|
|
|
@ -15,13 +15,20 @@ import type { OnModuleInit } from '@nestjs/common';
|
|
|
|
|
import type { JobStatus } from '../../interface/Jobs'; |
|
|
|
|
|
|
|
|
|
const url = new URL(process.env.NC_PUBLIC_URL || `http://localhost:${process.env.PORT || '8080'}/`) |
|
|
|
|
let namespace = url.pathname |
|
|
|
|
if (!namespace.endsWith('/')) { |
|
|
|
|
namespace = namespace + '/jobs'; |
|
|
|
|
} else { |
|
|
|
|
namespace = namespace + 'jobs'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@WebSocketGateway({ |
|
|
|
|
cors: { |
|
|
|
|
origin: '*', |
|
|
|
|
allowedHeaders: ['xc-auth'], |
|
|
|
|
credentials: true, |
|
|
|
|
}, |
|
|
|
|
namespace: `${url.pathname}jobs`, |
|
|
|
|
namespace: namespace, |
|
|
|
|
}) |
|
|
|
|
export class JobsGateway implements OnModuleInit { |
|
|
|
|
constructor(@Inject('JobsService') private readonly jobsService) {} |
|
|
|
|