Skip to content

Commit 4d08470

Browse files
fix: replace 'tutorbook.app' with 'tutorbook.org'
1 parent 064786d commit 4d08470

File tree

33 files changed

+74
-74
lines changed

33 files changed

+74
-74
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ that object (e.g. Viewed, Installed, Created).
116116

117117
### Zoom Integration
118118

119-
TB ([Tutorbook](https://tutorbook.app)) creates new recurring Zoom meetings for
119+
TB ([Tutorbook](https://tutorbook.org)) creates new recurring Zoom meetings for
120120
every [match](#match). To do so, TB stores Zoom OAuth refresh tokens and account
121121
IDs within [user](#user) and [org](#org) profiles.
122122

components/window/browser.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function Browser({ url, refresh }: BrowserProps): JSX.Element {
1919
<i className={styles.lock}>
2020
<LockIcon />
2121
</i>
22-
<a href={url}>{`tutorbook.app${url}`}</a>
22+
<a href={url}>{`tutorbook.org${url}`}</a>
2323
<button className={styles.refresh} type='button' onClick={refresh}>
2424
<RefreshIcon />
2525
</button>

cypress/fixtures/events/message.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"timestamp": "2020-10-15T19:04:15",
66
"person": {
77
"roles": ["tutee"],
8-
"photo": "https://assets.tutorbook.app/jpgs/student.jpg",
8+
"photo": "https://assets.tutorbook.org/jpgs/student.jpg",
99
"handle": "5481564b-e29d-4241-a1dd-01456834f65d",
1010
"name": "Erik Lucatero",
1111
"id": "student"

cypress/fixtures/match.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"status": "new",
66
"creator": {
77
"roles": [],
8-
"photo": "https://assets.tutorbook.app/jpgs/admin.jpg",
8+
"photo": "https://assets.tutorbook.org/jpgs/admin.jpg",
99
"handle": "e3eea549-b5a2-4395-889b-a63928874c3d",
1010
"name": "Nicholas Chiang",
1111
"id": "admin"
@@ -16,14 +16,14 @@
1616
"people": [
1717
{
1818
"roles": ["tutor"],
19-
"photo": "https://assets.tutorbook.app/jpgs/volunteer.jpg",
19+
"photo": "https://assets.tutorbook.org/jpgs/volunteer.jpg",
2020
"handle": "6316934d-63b9-4aec-82f8-1bf2645c048d",
2121
"name": "John Doe",
2222
"id": "volunteer"
2323
},
2424
{
2525
"roles": ["tutee"],
26-
"photo": "https://assets.tutorbook.app/jpgs/student.jpg",
26+
"photo": "https://assets.tutorbook.org/jpgs/student.jpg",
2727
"handle": "5481564b-e29d-4241-a1dd-01456834f65d",
2828
"name": "Erik Lucatero",
2929
"id": "student"

cypress/fixtures/meeting.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"creator": {
2020
"roles": [],
21-
"photo": "https://assets.tutorbook.app/jpgs/admin.jpg",
21+
"photo": "https://assets.tutorbook.org/jpgs/admin.jpg",
2222
"handle": "e3eea549-b5a2-4395-889b-a63928874c3d",
2323
"name": "Nicholas Chiang",
2424
"id": "admin"
@@ -30,7 +30,7 @@
3030
"updated": "2020-10-15T19:04:10",
3131
"creator": {
3232
"roles": [],
33-
"photo": "https://assets.tutorbook.app/jpgs/admin.jpg",
33+
"photo": "https://assets.tutorbook.org/jpgs/admin.jpg",
3434
"handle": "e3eea549-b5a2-4395-889b-a63928874c3d",
3535
"name": "Nicholas Chiang",
3636
"id": "admin"
@@ -41,14 +41,14 @@
4141
"people": [
4242
{
4343
"roles": ["tutor"],
44-
"photo": "https://assets.tutorbook.app/jpgs/volunteer.jpg",
44+
"photo": "https://assets.tutorbook.org/jpgs/volunteer.jpg",
4545
"handle": "6316934d-63b9-4aec-82f8-1bf2645c048d",
4646
"name": "John Doe",
4747
"id": "volunteer"
4848
},
4949
{
5050
"roles": ["tutee"],
51-
"photo": "https://assets.tutorbook.app/jpgs/student.jpg",
51+
"photo": "https://assets.tutorbook.org/jpgs/student.jpg",
5252
"handle": "5481564b-e29d-4241-a1dd-01456834f65d",
5353
"name": "Erik Lucatero",
5454
"id": "student"

cypress/fixtures/orgs/default.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"created": "2020-10-15T19:04:10",
44
"updated": "2020-10-15T19:04:10",
55
"name": "Tutorbook",
6-
"photo": "https://assets.tutorbook.app/jpgs/default.jpg",
7-
"background": "https://assets.tutorbook.app/jpgs/rocky-beach.jpg",
6+
"photo": "https://assets.tutorbook.org/jpgs/default.jpg",
7+
"background": "https://assets.tutorbook.org/jpgs/rocky-beach.jpg",
88
"email": "[email protected]",
99
"phone": "+16508612723",
1010
"bio": "Tutorbook is the default (and public) organization for Tutorbook's web app; it can be used by anyone and everyone who needs (or wants to become) a volunteer tutor or mentor. We're connecting K-12 students with volunteer tutors (amidst COVID-19) and 9-12 students with expert mentors to work on cool projects together (also during COVID-19 and beyond).",

cypress/fixtures/orgs/school.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"created": "2020-10-15T19:04:10",
44
"updated": "2020-10-15T19:04:10",
55
"name": "Gunn High School",
6-
"photo": "https://assets.tutorbook.app/jpgs/gunn.jpg",
6+
"photo": "https://assets.tutorbook.org/jpgs/gunn.jpg",
77
"background": "https://firebasestorage.googleapis.com/v0/b/covid-tutoring.appspot.com/o/default%2Forgs%2Fgunn-banner.jpg?alt=media&token=bf5f10b8-c13b-4e99-9267-f2cdbe82feb4",
88
"email": "[email protected]",
99
"phone": "+16503548271",

cypress/fixtures/users/admin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"email": "[email protected]",
77
"phone": "+16505550138",
88
"background": "",
9-
"photo": "https://assets.tutorbook.app/jpgs/admin.jpg",
9+
"photo": "https://assets.tutorbook.org/jpgs/admin.jpg",
1010
"bio": "I'm currently a junior at Gunn High School interested in artificial intelligence, progressive web development, karate, cello, photography, filmmaking, music, and running.",
1111
"socials": [
1212
{

cypress/fixtures/users/student.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "Erik Lucatero",
66
"email": "[email protected]",
77
"phone": "+16505550175",
8-
"photo": "https://assets.tutorbook.app/jpgs/student.jpg",
8+
"photo": "https://assets.tutorbook.org/jpgs/student.jpg",
99
"background": "",
1010
"bio": "I'm a student at Gunn High School passionate about Computer Science and running. I've been learning Python and TensorFlow with dreams of becoming a data scientist. Currently, I'm looking for somebody to help me with my learning!",
1111
"socials": [

cypress/fixtures/users/volunteer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"name": "John Doe",
66
"email": "[email protected]",
77
"phone": "+16505550137",
8-
"photo": "https://assets.tutorbook.app/jpgs/volunteer.jpg",
9-
"background": "https://assets.tutorbook.app/jpgs/volunteer-banner.jpg",
8+
"photo": "https://assets.tutorbook.org/jpgs/volunteer.jpg",
9+
"background": "https://assets.tutorbook.org/jpgs/volunteer-banner.jpg",
1010
"bio": "I'm currently an electrical engineering Ph.D. student at Stanford University who has been volunteering with AmeriCorps (tutoring local high schoolers) for over five years now. I'm passionate about teaching and would love to help you in any way that I can!",
1111
"socials": [
1212
{

0 commit comments

Comments
 (0)