File tree 1 file changed +2
-2
lines changed
api/src/prescription/campaign/infrastructure/repositories
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
- import { knex } from '../../../../../db/knex-database-connection.js' ;
2
1
import { CAMPAIGN_FEATURES } from '../../../../shared/domain/constants.js' ;
3
2
import { DomainTransaction } from '../../../../shared/domain/DomainTransaction.js' ;
4
3
import { NotFoundError } from '../../../../shared/domain/errors.js' ;
@@ -21,7 +20,8 @@ const areKnowledgeElementsResettable = async function ({ id }) {
21
20
} ;
22
21
23
22
const getByCode = async function ( code ) {
24
- const campaign = await knex ( 'campaigns' ) . first ( ) . where ( { code } ) ;
23
+ const knexConn = DomainTransaction . getConnection ( ) ;
24
+ const campaign = await knexConn ( 'campaigns' ) . first ( ) . where ( { code } ) ;
25
25
if ( ! campaign ) return null ;
26
26
return new Campaign ( campaign ) ;
27
27
} ;
You can’t perform that action at this time.
0 commit comments