Skip to content

Commit

Permalink
feat: getting rid of stack reference connection
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonNotJson committed Oct 18, 2023
1 parent 4affad7 commit 8bc5365
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/stacks/business.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class WasedaTimeBusinessLayer extends BusinessLayer {
this.dataInterface.getEndpoint(DataEndpoint.COURSE_REVIEWS),
true,
)
.addService('career')
// .addService('career')
.addService(
'timetable',
this.dataInterface.getEndpoint(DataEndpoint.TIMETABLE),
Expand Down
8 changes: 4 additions & 4 deletions lib/stacks/persistence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ export class WasedaTimePersistenceLayer extends PersistenceLayer {
DataEndpoint.COURSE_REVIEWS,
dynamoDatabase.tables[Collection.COURSE_REVIEW].tableName,
);
this.dataInterface.setEndpoint(
DataEndpoint.CAREER,
dynamoDatabase.tables[Collection.CAREER].tableName,
);
// this.dataInterface.setEndpoint(
// DataEndpoint.CAREER,
// dynamoDatabase.tables[Collection.CAREER].tableName,
// );
this.exportValue(dynamoDatabase.tables[Collection.CAREER].tableName);
this.exportValue(dynamoDatabase.tables[Collection.CAREER].tableArn);
this.dataInterface.setEndpoint(
Expand Down

0 comments on commit 8bc5365

Please sign in to comment.