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

Prepare master for v5 release. #551

Merged
merged 15 commits into from
Jun 1, 2019
Prev Previous commit
Next Next commit
Update API url
  • Loading branch information
Stefan Buck committed Jun 1, 2019
commit 2498812efb6c5b663640fcd2db62892d388b2dd3
4 changes: 2 additions & 2 deletions assets/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"manifest_version": 2,
"author": "Stefan Buck",
"description": "",
"homepage_url": "https://octolinker.github.io/",
"homepage_url": "https://octolinker.now.sh/",
"icons": {
"128": "icon.png"
},
Expand Down Expand Up @@ -41,6 +41,6 @@
"storage",
"https://github.com/",
"https://gist.github.com/",
"https://octolinker.now.sh/"
"https://octolinker-api.now.sh/"
]
}
2 changes: 1 addition & 1 deletion packages/helper-octolinker-api/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('helper-octolinker-api', () => {
fetch.mockResponseOnce(response);
await bulkAction(data);

expect(global.fetch).toBeCalledWith('https://octolinker.now.sh/api', {
expect(global.fetch).toBeCalledWith('https://octolinker-api.now.sh', {
method: 'POST',
body: expect.any(String),
headers: {
Expand Down
2 changes: 1 addition & 1 deletion packages/helper-octolinker-api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const bulkAction = async function(data) {
}));

try {
const response = await fetch('https://octolinker.now.sh/api', {
const response = await fetch('https://octolinker-api.now.sh', {
method: 'POST',
body: JSON.stringify(payload),
headers: {
Expand Down