Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-187 Marketo Form Profile Service #188

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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
3 changes: 2 additions & 1 deletion apps/admin/app/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"plugin:react/recommended",
"prettier",
"prettier/standard",
"prettier/react"
"prettier/react",
"plugin:jest/recommended"
],
"parser": "babel-eslint",
"ignorePatterns": ["webpack.config.js", "node_modules/"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,14 @@ export default class MarketoConfig extends React.Component {
onChange={this.onContentChange}
/>
</FormItem>
<FormItem label="Profile URL">
<Textfield
name="profileUrl"
value={this.state.data[JCR_CONTENT].profileUrl}
placeholder="ProfileUrl"
onChange={this.onContentChange}
/>
</FormItem>
</GridColumn>
</GridRow>
</Grid>
Expand Down
240 changes: 240 additions & 0 deletions apps/admin/app/package-lock.json

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

1 change: 1 addition & 0 deletions apps/admin/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"aemsync": "^4.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint-plugin-jest": "^24.3.6",
"husky": "^4.2.5",
"jest": "^25.3.0",
"jest-raw-loader": "^1.0.1",
Expand Down
Loading