-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7af35a6
commit 111aebe
Showing
18 changed files
with
363 additions
and
48 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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { ResourceWithOptions } from "adminjs"; | ||
import { BaseIncrease } from "@shared/entities/base-increase.entity.js"; | ||
|
||
export const BaseIncreaseResource: ResourceWithOptions = { | ||
resource: BaseIncrease, | ||
options: { | ||
sort: { | ||
sortBy: "ecosystem", | ||
direction: "desc", | ||
}, | ||
navigation: { | ||
name: "Data Management", | ||
icon: "Database", | ||
}, | ||
}, | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { ResourceWithOptions } from "adminjs"; | ||
import { BaseSize } from "@shared/entities/base-size.entity.js"; | ||
|
||
export const BaseSizeResource: ResourceWithOptions = { | ||
resource: BaseSize, | ||
options: { | ||
sort: { | ||
sortBy: "ecosystem", | ||
direction: "desc", | ||
}, | ||
navigation: { | ||
name: "Data Management", | ||
icon: "Database", | ||
}, | ||
}, | ||
}; |
16 changes: 16 additions & 0 deletions
16
admin/resources/model-assumptions/model-assumptions.resource.ts
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { ResourceWithOptions } from "adminjs"; | ||
import { ModelAssumptions } from "@shared/entities/model-assumptions.entity.js"; | ||
|
||
export const ModelAssumptionResource: ResourceWithOptions = { | ||
resource: ModelAssumptions, | ||
options: { | ||
sort: { | ||
sortBy: "name", | ||
direction: "desc", | ||
}, | ||
navigation: { | ||
name: "Data Management", | ||
icon: "Database", | ||
}, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export type ExcelBaseIncrease = { | ||
ecosystem: string; | ||
feasibility_analysis: number; | ||
conservation_planning_and_admin: number; | ||
data_collection_and_field_cost: number; | ||
community_representation: number; | ||
blue_carbon_project_planning: number; | ||
establishing_carbon_rights: number; | ||
financing_cost: number; | ||
validation: number; | ||
monitoring: number; | ||
baseline_reassessment: number; | ||
MRV: number; | ||
long_term_project_operating_cost: number; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export type ExcelBaseSize = { | ||
activity: string; | ||
ecosystem: string; | ||
feasibility_analysis: number; | ||
conservation_planning_and_admin: number; | ||
data_collection_and_field_cost: number; | ||
community_representation: number; | ||
blue_carbon_project_planning: number; | ||
establishing_carbon_rights: number; | ||
financing_cost: number; | ||
validation: number; | ||
implementation_labor_planting: number; | ||
implementation_labor_hybrid: number; | ||
implementation_labor_hydrology: number; | ||
monitoring: number; | ||
baseline_reassessment: number; | ||
MRV: number; | ||
long_term_project_operating_cost: number; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export type ExcelModelAssumptions = { | ||
Assumptions: string; | ||
Units: string; | ||
Value: string; | ||
}; |
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
Oops, something went wrong.