Skip to content

Commit

Permalink
converge on using JobStatus.created for features
Browse files Browse the repository at this point in the history
  • Loading branch information
hotzevzl committed Feb 16, 2024
1 parent 847192d commit c368cad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ export class GeoFeaturesService extends AppBaseService<
featureClassName: data.name,
description: data.description,
projectId,
creationStatus: JobStatus.done,
creationStatus: JobStatus.created,
}),
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export class FeatureAmountUploadService {
return {
featureClassName: feature.feature_name,
projectId: projectId,
creationStatus: JobStatus.done,
creationStatus: JobStatus.created,
isLegacy: true,
};
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ async function getFixtures() {
setIsPublicProperty: jest.fn(),
sources: ProjectSourcesEnum.legacyImport,
},
status: JobStatus.done,
status: JobStatus.created,
type: ScenarioType.marxanWithZones,
users: [],
ranAtLeastOnce: false,
Expand Down

0 comments on commit c368cad

Please sign in to comment.