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 ec4470b commit 1b6ec72Copy full SHA for 1b6ec72
components/server/src/api/organization-service-api.ts
@@ -239,7 +239,7 @@ export class OrganizationServiceAPI implements ServiceImpl<typeof OrganizationSe
239
throw new ApplicationError(ErrorCodes.BAD_REQUEST, "organizationId is required");
240
}
241
242
- const settings = await this.orgService.getSettings(ctxUserId(), req.organizationId);
+ const settings = await this.orgService.getSettingsWithResolvedWelcomeMessage(ctxUserId(), req.organizationId);
243
const response = new GetOrganizationSettingsResponse();
244
response.settings = this.apiConverter.toOrganizationSettings(settings);
245
0 commit comments