Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Mar 9, 2021. It is now read-only.

Commit 64e5568

Browse files
committed
fix events page error
1 parent 645ee87 commit 64e5568

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ before_install:
77
- 'curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.27.5'
88
- 'export PATH="$HOME/.yarn/bin:$PATH"'
99
cache: yarn
10-
after_script:
11-
- yarn export && cd out && NOW_ALIAS=coderplex-app.now.sh node ../scripts/deploy.js -p --team coderplex -d && cd ../
12-
branches:
13-
only:
14-
- master
1510
env:
1611
global:
1712
- secure: nDYIe5Cw1FgD1Iqv2FKRG5Q6Jvvml4ovKPjMRD3BBWinPHe6xbZGtPi0P/Jqt6PFmu5o3aiWQO4ffYnFYUW8N8Tu86RMr0sLQ7Sv6MiE0JxL+7Y+VBZ9h1i9MARiTFQRUw9lrToNa13bnuGy5YNfx4nVUo63vluRTCW6AZd0h01tgEjbhTAamWf1z/n26ACMNJSr2iQ7coakLwpsQvdXMcUe5tAduzoQtLb8DiXdbXO+D7Oepl4dQvOfosa14wW5Z6MN6Y/AxxJ246Cngm3hgZF7IpLCD49H7shXHHSaIcYkJtnSRozKSBEdz34+Jqw+278vcWOA4n2advAhWd2oCAUa0drmu8Nu2Obtrx4oAUQhDwBxfQhbmXpen2Ry5DKp86AurTxgXc+n6bPfjwGdjha2u6cd1fCwpTu5pgnOeX101U/Bu68tAz/EIErCDxHDW/WyrBkVKG3rkABjv3pse4ZJuMy3eeKp+8o2P29b77GHxhKdEw4SvZSfdfnVooABcC6p/sqcumuTvJn20AZkBdhuxGDYSEfNecKPAEHRV8nUQUbMVT7bImQAgl4O4QhHcOfrthbNnQJM94DX0Z2xRQ5sdRmzhe4Ob771EUByNdMO7k2O1KsJAWQ78KhTdOJKoiIp2sH9zRGCTjnTIoCDJx4zBTGHpqV0+R4ltth7T4Q=

components/header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default props => {
4848
{
4949
title: 'Blog',
5050
path: 'https://medium.com/coderplex',
51-
external: false,
51+
external: true,
5252
},
5353
];
5454
return (

utils/urls.js

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
export const pastEventsMeetupURL =
2-
'https://api.meetup.com/coderplex/events?desc=1&status=past&only=id%2Cname%2Ctime%2Cyes_rsvp_count%2Cdescription%2Cvenue%2Cstatus%2Clink';
1+
export const pastEventsMeetupURL = '/events/past';
32

4-
export const futureEventsMeetupURL =
5-
'https://api.meetup.com/coderplex/events?only=id%2Cname%2Ctime%2Cyes_rsvp_count%2Cdescription%2Cvenue%2Cstatus%2Clink';
3+
export const futureEventsMeetupURL = '/events/upcoming';
64

7-
export const indexPageMeetupURL =
8-
'https://api.meetup.com/coderplex/events?scroll=future_or_past&photo-host=public&page=1&sig_id=216741149&only=id%2Ctime%2Cyes_rsvp_count%2Cvenue%2Clink%2Cstatus%2Cname%2Cdescription&sig=fabc8645c9e317083cc1f29ff0e8292b88b5e515';
5+
export const indexPageMeetupURL = '/events';
96

10-
export const reverseProxyCORS = 'https://cors.now.sh/';
7+
export const reverseProxyCORS = 'https://coderplex-api.glitch.me/api';

0 commit comments

Comments
 (0)