-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(api): update mock API structure
- Loading branch information
Showing
7 changed files
with
17 additions
and
6 deletions.
There are no files selected for viewing
File renamed without changes.
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,11 @@ | ||
{ | ||
"name": "Jetstream2", | ||
"resourceProvider": { | ||
"resourceProviderId": 2, | ||
"name": "Indiana University", | ||
"iconUri": "https://www.iu.edu/favicon.ico" | ||
}, | ||
"imageUri": "https://jetstream-cloud.org/images/home/jetstream-2.png", | ||
"description": "Jetstream2 is a user-friendly cloud computing environment for researchers and educators running on OpenStack and featuring Exosphere as the primary user interface. It is built on the successes of Jetstream1 and continues the main features of that system while extending to a broader range of hardware and services, including GPUs, large memory nodes, virtual clustering, programmable cyberinfrastructure with OpenStack Heat and Terraform, and many other features. It is designed to provide both infrastructure for gateways and other “always on” services as well as giving researchers access to interactive computing and data analysis resources on demand.", | ||
"userGuideUri": "https://docs.jetstream-cloud.org/" | ||
} |
File renamed without changes.
File renamed without changes.
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,9 @@ | ||
import ResourceGroupDescription from "./resource-group-description"; | ||
|
||
export default function ResourceGroupDetail({ resourceId }) { | ||
export default function ResourceGroupDetail({ baseUri, resourceId }) { | ||
return ( | ||
<div class="resource-group-detail"> | ||
<ResourceGroupDescription resourceId={resourceId} /> | ||
<ResourceGroupDescription baseUri={baseUri} resourceId={resourceId} /> | ||
</div> | ||
); | ||
} |