Skip to content

Commit

Permalink
Merge pull request #88 from Cloudshelf/noble-removal-2
Browse files Browse the repository at this point in the history
fix: build fixes (noble removal)
  • Loading branch information
ashleyww93 authored Dec 24, 2024
2 parents f67f684 + e9c181e commit c3bc8e1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
16 changes: 0 additions & 16 deletions src/modules/retailer/retailer.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,22 +94,6 @@ export class RetailerService {
return RetailerUtils.getByDomain(this.entityManager, domain);
}

async updateLastProductSyncTime(retailer: RetailerEntity) {
return await RetailerUtils.updateLastProductSyncTime(this.entityManager, retailer);
}

async updateLastProductGroupSyncTime(retailer: RetailerEntity) {
return await RetailerUtils.updateLastProductGroupSyncTime(this.entityManager, retailer);
}

async updateLastSafetyRequestedTime(retailer: RetailerEntity) {
return await RetailerUtils.updateLastSafetyRequestedTime(this.entityManager, retailer);
}

async updateLastSafetyCompletedTime(retailer: RetailerEntity) {
return await RetailerUtils.updateLastSafetyCompletedTime(this.entityManager, retailer);
}

async updateShopInformationFromShopifyOnlineSession(
shopifyApiInstance: Shopify,
entity: RetailerEntity,
Expand Down
4 changes: 0 additions & 4 deletions src/modules/retailer/retailer.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,6 @@ export class RetailerUtils {
return em.findOne(RetailerEntity, { domain });
}

static async updateLastSafetyRequestedTime(em: EntityManager, retailer: RetailerEntity) {
retailer.lastSafetySyncRequested = new Date();
await em.persistAndFlush(retailer);
}

static async updateShopInformationFromShopifyOnlineSession(
em: EntityManager,
Expand Down

0 comments on commit c3bc8e1

Please sign in to comment.