Skip to content

Commit

Permalink
remove gateway config for now
Browse files Browse the repository at this point in the history
  • Loading branch information
bartolomej committed Nov 2, 2023
1 parent 6471d9f commit 46cd5cf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion apps/electron/src/services/flowser-app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ export class FlowserAppService {
name: parsedPath.name,
filesystemPath,
emulator: undefined,
gateway: undefined,
createdAt: new Date(),
updatedAt: new Date(),
});
Expand Down
1 change: 0 additions & 1 deletion apps/electron/src/services/workspace.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ export class WorkspaceService extends EventEmitter {
createdAt: new Date(),
updatedAt: new Date(),
emulator: this.flowEmulatorService.getDefaultConfig(),
gateway: undefined,
id: randomUUID(),
name: 'My awesome project',
};
Expand Down
3 changes: 0 additions & 3 deletions packages/api/src/resources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,8 @@ export interface FlowserWorkspace extends TimestampedResource {
name: string;
filesystemPath: string;
emulator: FlowEmulatorConfig | undefined;
gateway: FlowGatewayConfig | undefined;
}

export interface FlowGatewayConfig {}

export interface FlowEmulatorConfig {
verboseLogging: boolean;
logFormat: string;
Expand Down

0 comments on commit 46cd5cf

Please sign in to comment.