Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
Skeleton code for the ColorStack Sprout Fall '21 pod project. PodSpace is a private social network for pods to stay connected with each other after the program.

## Collaborators
Raysa Morel / CS @ WGU '23
2 changes: 1 addition & 1 deletion src/routes/HelloWorldRoute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class HelloWorldRoute extends BaseRoute<HelloWorldResult> {
async content(): Promise<HelloWorldResult> {
return {
message: 'Looks like the server is up and running!',
podmates: []
podmates: ['Raysa Morel']
};
}
}