Skip to content

Commit 39a3f26

Browse files
committed
Final Project
1 parent 7e5fa2b commit 39a3f26

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.DS_Store
22
node_modules
33
package-lock.json
4-
.env
4+
.env

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This repository is for the Integrating With HubSpot I: Foundations course. This
44

55
To read the full directions, please go to the [practicum instructions](https://app.hubspot.com/academy/l/tracks/1092124/1093824/5493?language=en).
66

7-
**Put your HubSpot developer test account custom objects URL link here:** https://app-na2.hubspot.com/contacts/242136701/objects/2-166947950/views/all/list
7+
**Put your HubSpot developer test account custom objects URL link here:** https://app-na2.hubspot.com/contacts/242136701/objects/2-166947950/views/all/list
88

99
___
1010
## Tips:

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ app.post('/update-cobj', async (req, res) => {
6262
const createDog = `https://api.hubapi.com/crm/v3/objects/2-166947950/`;
6363
const headers = {
6464
Authorization: `Bearer ${PRIVATE_APP_ACCESS}`,
65-
'Content-Type': 'application/json'
65+
'Content-Type': 'application/json'
6666
};
6767
try {
6868
await axios.post(createDog, create, { headers } );

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
"express": "^4.18.2",
1414
"pug": "^3.0.2"
1515
}
16-
}
16+
}

public/css/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ h1 {
1010
margin: 1rem;
1111
}
1212

13-
.cards {
13+
.cards {
1414
display: flex;
1515
align-items: center;
1616
justify-content: space-evenly;

views/contacts.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
//- each contact in data
1313
//- .card
1414
//- h2.card__name #{contact.properties.firstname} #{contact.properties.lastname}
15-
//- p.card__email #{contact.properties.email}
15+
//- p.card__email #{contact.properties.email}

views/homepage.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body
88
p #[a(href=`http://localhost:3007/update-cobj`) Add to this table]
99
body
1010
main
11-
.container
11+
.container
1212
table.table
1313
tr
1414
th(style='width: 200px; display: left; max-width:33%;') name

views/updates.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ link(rel="stylesheet", href="/css/style.css")
44
head
55
title= `${title}`
66
body
7-
h1 Update Custom Object Form | Integrating With HubSpot I Practicum
7+
h1 Update Custom Object Form | Integrating With HubSpot I Practicum
88
#form.responsive(style='width: 200px; display: center; max-width:90%;')
99
form(method='POST')
1010
.form-row

0 commit comments

Comments
 (0)