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
8 changes: 8 additions & 0 deletions amplify/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Getting Started with Amplify CLI
This directory was generated by [Amplify CLI](https://docs.amplify.aws/cli).

Helpful resources:
- Amplify documentation: https://docs.amplify.aws
- Amplify CLI documentation: https://docs.amplify.aws/cli
- More details on this folder & generated files: https://docs.amplify.aws/cli/reference/files
- Join Amplify's community: https://amplify.aws/community/
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,6 @@ Resources:
]

Schema:
- Name: birthdate
Required: true
Mutable: true

- Name: email
Required: true
Expand All @@ -190,10 +187,6 @@ Resources:
Required: true
Mutable: true

- Name: gender
Required: true
Mutable: true

- Name: given_name
Required: true
Mutable: true
Expand Down
10 changes: 0 additions & 10 deletions amplify/backend/function/fsCoreApiResolver/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1063,14 +1063,6 @@ exports.handler = async function (ctx) {
...((updateData.lastName && [{
Name: 'family_name',
Value: updateData.lastName
}]) || []),
...((updateData.birthdate && [{
Name: 'birthdate',
Value: updateData.birthdate
}]) || []),
...((updateData.gender && [{
Name: 'gender',
Value: updateData.gender
}]) || [])
],
UserPoolId: USERPOOL,
Expand Down Expand Up @@ -2315,8 +2307,6 @@ exports.handler = async function (ctx) {
username
firstName
lastName
gender
birthdate
email
plan
avatar
Expand Down
100 changes: 99 additions & 1 deletion amplify/backend/function/fsCoreApiResolver/src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 66 additions & 0 deletions amplify/team-provider-info.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,70 @@
{
<<<<<<< HEAD
"dev": {
"awscloudformation": {
"AuthRoleName": "amplify-fstestttt-dev-115806-authRole",
"UnauthRoleArn": "arn:aws:iam::026152918307:role/amplify-fstestttt-dev-115806-unauthRole",
"AuthRoleArn": "arn:aws:iam::026152918307:role/amplify-fstestttt-dev-115806-authRole",
"Region": "us-east-1",
"DeploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"UnauthRoleName": "amplify-fstestttt-dev-115806-unauthRole",
"StackName": "amplify-fstestttt-dev-115806",
"StackId": "arn:aws:cloudformation:us-east-1:026152918307:stack/amplify-fstestttt-dev-115806/72d63fb0-5042-11ec-8a38-1293b79fe18b",
"AmplifyAppId": "de6e5rijl3m8h"
},
"categories": {
"function": {
"fsCognitoPostConfirmation": {
"deploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"s3Key": "amplify-builds/fsCognitoPostConfirmation-563936524c325968536e-build.zip"
},
"fsCoreApiResolver": {
"deploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"s3Key": "amplify-builds/fsCoreApiResolver-496b796b6f33494f656f-build.zip"
},
"fsCognitoPostConfirmationInvoker": {
"deploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"s3Key": "amplify-builds/fsCognitoPostConfirmationInvoker-2b6e7742464651426843-build.zip"
},
"fsDailyReport": {
"deploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"s3Key": "amplify-builds/fsDailyReport-45476977466f41396b59-build.zip"
},
"fsUserConnection": {
"deploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"s3Key": "amplify-builds/fsUserConnection-44412f7a763879394765-build.zip"
},
"fsUserDisconnection": {
"deploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"s3Key": "amplify-builds/fsUserDisconnection-415176574d4b446c4e35-build.zip"
},
"fsJoinProject": {
"deploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"s3Key": "amplify-builds/fsJoinProject-647266325278636f724d-build.zip"
},
"fsLeaveProject": {
"deploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"s3Key": "amplify-builds/fsLeaveProject-6932724c69364d67446a-build.zip"
},
"fsSendRealtimeData": {
"deploymentBucketName": "amplify-fstestttt-dev-115806-deployment",
"s3Key": "amplify-builds/fsSendRealtimeData-446b4d2b53376d6a3775-build.zip"
}
},
"hosting": {
"amplifyhosting": {
"appId": "de6e5rijl3m8h",
"type": "manual"
}
},
"auth": {
"userPoolGroups": {},
"fsCognito": {}
}
}
},
=======
>>>>>>> parent of 5d784d6 (changed birthdate and gender)
"mainn": {
"awscloudformation": {
"AuthRoleName": "amplify-forwardslashtesting-mainn-131231-authRole",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const root = ReactDOM.createRoot(container);
root.render(
<Provider store={store}>
<BrowserRouter>
<App />
<App />
</BrowserRouter>
</Provider>
);
Expand Down
4 changes: 3 additions & 1 deletion src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ import reducers from "./reducers"
export default createStore(
combineReducers(reducers),
applyMiddleware(thunk, caching)
)
)