From 280044cd795f972055d7b42b2a6a513fc842608a Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Fri, 13 Feb 2026 20:29:02 -0600 Subject: [PATCH] cleanup lists service --- src/services/lists.service.ts | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/src/services/lists.service.ts b/src/services/lists.service.ts index 7e30fb6..e6da014 100644 --- a/src/services/lists.service.ts +++ b/src/services/lists.service.ts @@ -4,30 +4,16 @@ import { Injectable } from '@angular/core'; providedIn: 'root', }) export class ListsService { - public actionListIds: string[] = []; - public transformListIds: string[] = []; - public moduleListsId: string[] = []; + public processorListIds: string[] = []; - registerActionList(path: string | undefined) { + registerProcessorList(path: string | undefined) { if (path === undefined) { return ''; } const id = this.pathToId(path); - if (!this.actionListIds.includes(id)) { - this.actionListIds.push(id); - } - return id; - } - - registerTransformList(path: string | undefined) { - if (path === undefined) { - return ''; - } - - const id = this.pathToId(path); - if (!this.transformListIds.includes(id)) { - this.transformListIds.push(id); + if (!this.processorListIds.includes(id)) { + this.processorListIds.push(id); } return id; }