We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6815835 commit eebd2e2Copy full SHA for eebd2e2
src/modules/subscription/subscription.service.ts
@@ -387,9 +387,9 @@ export class SubscriptionService {
387
params: IGetSubscriptionInfo,
388
): Promise<TResult<SubscriptionRawResponse>> {
389
try {
390
- const { searchBy, authenticated } = params;
+ const { searchBy, authenticated, userEntity: userEntityParam } = params;
391
392
- let userEntity: UserEntity | undefined;
+ let userEntity: UserEntity | undefined = userEntityParam;
393
394
if (!userEntity && searchBy) {
395
const userResult = await this.queryBus.execute(
0 commit comments