offer service

This commit is contained in:
counterweight 2025-03-07 16:06:44 +01:00
parent ec725f8e4e
commit bf0775ba31
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
2 changed files with 24 additions and 19 deletions

View file

@ -45,7 +45,10 @@ class ServicesProvider {
const ProfileServiceProvider = require('../services/profileService');
const profileService = new ProfileServiceProvider({ models }).provide();
const OfferServiceProvider = require('../services/offerService');
const offerService = new OfferServiceProvider().provide();
const offerService = new OfferServiceProvider({
models,
errors,
}).provide();
return {
invitesService,