Skip to content

Commit 9145c88

Browse files
montymxbflovilmart
authored andcommitted
Corrected outdated links (#4254)
1 parent f0b7ffc commit 9145c88

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ If you have a non-bug question, ask on Stack Overflow or Server Fault:
44
- https://stackoverflow.com/questions/tagged/parse.com
55
- https://serverfault.com/tags/parse
66

7-
You may also search through existing issues before opening a new one: https://github.com/ParsePlatform/Parse-Server/issues?utf8=%E2%9C%93&q=is%3Aissue
7+
You may also search through existing issues before opening a new one: https://github.com/parse-community/parse-server/issues?utf8=%E2%9C%93&q=is%3Aissue
88

99
--- Please use this template. If you don't use this template, your issue may be closed without comment. ---
1010

spec/MongoStorageAdapter.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe_only_db('mongo')('MongoStorageAdapter', () => {
3535
);
3636
});
3737

38-
// https://github.com/ParsePlatform/parse-server/pull/148#issuecomment-180407057
38+
// https://github.com/parse-community/parse-server/pull/148#issuecomment-180407057
3939
it('preserves replica sets', () => {
4040
spyOn(MongoClient, 'connect').and.returnValue(Promise.resolve(null));
4141
new MongoStorageAdapter({

src/RestQuery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function RestQuery(config, auth, className, restWhere = {}, restOptions = {}, cl
5454
this.include = [];
5555

5656
// If we have keys, we probably want to force some includes (n-1 level)
57-
// See issue: https://github.com/ParsePlatform/parse-server/issues/3185
57+
// See issue: https://github.com/parse-community/parse-server/issues/3185
5858
if (restOptions.hasOwnProperty('keys')) {
5959
const keysForInclude = restOptions.keys.split(',').filter((key) => {
6060
// At least 2 components

src/Routers/UsersRouter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export class UsersRouter extends ClassesRouter {
118118
delete user.password;
119119

120120
// Sometimes the authData still has null on that keys
121-
// https://github.com/ParsePlatform/parse-server/issues/935
121+
// https://github.com/parse-community/parse-server/issues/935
122122
if (user.authData) {
123123
Object.keys(user.authData).forEach((provider) => {
124124
if (user.authData[provider] === null) {

src/cli/definitions/parse-server.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default {
8282
},
8383
"push": {
8484
env: "PARSE_SERVER_PUSH",
85-
help: "Configuration for push, as stringified JSON. See https://github.com/ParsePlatform/parse-server/wiki/Push",
85+
help: "Configuration for push, as stringified JSON. See http://docs.parseplatform.org/parse-server/guide/#push-notifications",
8686
action: objectParser
8787
},
8888
"scheduledPush": {
@@ -92,12 +92,12 @@ export default {
9292
},
9393
"oauth": {
9494
env: "PARSE_SERVER_OAUTH_PROVIDERS",
95-
help: "[DEPRECATED (use auth option)] Configuration for your oAuth providers, as stringified JSON. See https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide#oauth",
95+
help: "[DEPRECATED (use auth option)] Configuration for your oAuth providers, as stringified JSON. See http://docs.parseplatform.org/parse-server/guide/#oauth-and-3rd-party-authentication",
9696
action: objectParser
9797
},
9898
"auth": {
9999
env: "PARSE_SERVER_AUTH_PROVIDERS",
100-
help: "Configuration for your authentication providers, as stringified JSON. See https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide#oauth",
100+
help: "Configuration for your authentication providers, as stringified JSON. See http://docs.parseplatform.org/parse-server/guide/#oauth-and-3rd-party-authentication",
101101
action: objectParser
102102
},
103103
"fileKey": {

src/cli/parse-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const help = function(){
1111
console.log(' Get Started guide:');
1212
console.log('');
1313
console.log(' Please have a look at the get started guide!');
14-
console.log(' https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide');
14+
console.log(' http://docs.parseplatform.org/parse-server/guide/');
1515
console.log('');
1616
console.log('');
1717
console.log(' Usage with npm start');

src/cloud-code/Parse.Cloud.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ParseCloud._removeAllHooks = () => {
5757

5858
ParseCloud.useMasterKey = () => {
5959
// eslint-disable-next-line
60-
console.warn("Parse.Cloud.useMasterKey is deprecated (and has no effect anymore) on parse-server, please refer to the cloud code migration notes: https://github.com/ParsePlatform/parse-server/wiki/Compatibility-with-Hosted-Parse#cloud-code")
60+
console.warn("Parse.Cloud.useMasterKey is deprecated (and has no effect anymore) on parse-server, please refer to the cloud code migration notes: http://docs.parseplatform.org/parse-server/guide/#master-key-must-be-passed-explicitly")
6161
}
6262

6363
ParseCloud.httpRequest = require("./httpRequest");

src/vendor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ allowed in hostnames. While this results in a slightly incorrect parsed result,
55
as the hostname field for a mongodb should be an array of replica sets, it's
66
good enough to let us pull out and escape the auth portion of the URL.
77

8-
See also: https://github.com/ParsePlatform/parse-server/pull/986
8+
https://github.com/parse-community/parse-server/pull/986

0 commit comments

Comments
 (0)