mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Fixes
This commit is contained in:
parent
cfb7df808d
commit
790fccdf98
2 changed files with 3 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ export class PageService implements IPageService {
|
|||
}, appVersionId);
|
||||
|
||||
// Fetch pages and events separately after transaction completes
|
||||
const pages = await this.findPagesForVersion(appVersionId, organizationId, '');
|
||||
const pages = await this.findPagesForVersion(appVersionId);
|
||||
const events = await this.eventHandlerService.findEventsForVersion(appVersionId);
|
||||
|
||||
return { pages, events };
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ import { DataSourcesRepository } from '@modules/data-sources/repository';
|
|||
import { AppPermissionsModule } from '@modules/app-permissions/module';
|
||||
import { RolesRepository } from '@modules/roles/repository';
|
||||
import { AppGitRepository } from '@modules/app-git/repository';
|
||||
import { GroupPermissionsRepository } from '@modules/group-permissions/repository';
|
||||
import { SubModule } from '@modules/app/sub-module';
|
||||
export class WorkflowsModule extends SubModule {
|
||||
static async register(configs?: { IS_GET_CONTEXT: boolean }): Promise<DynamicModule> {
|
||||
|
|
@ -141,6 +142,7 @@ export class WorkflowsModule extends SubModule {
|
|||
TemporalService,
|
||||
FeatureAbilityFactory,
|
||||
RolesRepository,
|
||||
GroupPermissionsRepository,
|
||||
],
|
||||
controllers: [
|
||||
WorkflowsController,
|
||||
|
|
|
|||
Loading…
Reference in a new issue