-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: delete staging data returns correct data, return array for diff …
…data
- Loading branch information
Michael.Taylor
committed
Dec 22, 2021
1 parent
fd22053
commit 0b1bf40
Showing
6 changed files
with
10 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,5 @@ | ||
import * as ProjectController from './project.controller'; | ||
import * as CoBenefitController from './co-benefit.controller'; | ||
import * as LocationController from './location.controller'; | ||
import * as RatingController from './rating.controller'; | ||
import * as QualificationController from './qualification.controller'; | ||
import * as RelatedProjectController from './related-projects.controller'; | ||
import * as UnitController from './units.controller'; | ||
import * as VintageController from './vintages.controller'; | ||
import * as StagingController from './staging.controller'; | ||
|
||
export { | ||
ProjectController, | ||
CoBenefitController, | ||
LocationController, | ||
RatingController, | ||
QualificationController, | ||
RelatedProjectController, | ||
UnitController, | ||
VintageController, | ||
StagingController, | ||
}; | ||
export { ProjectController, UnitController, StagingController }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
export * from './projects'; | ||
export * from './units'; | ||
export * from './locations'; | ||
export * from './qualifications'; | ||
export * from './ratings'; | ||
export * from './vintages'; | ||
export * from './related-projects'; | ||
export * from './co-benefits'; | ||
export * from './staging'; |