Corrected outdated links (#4254)

This commit is contained in:
Benjamin Wilson Friedman
2017-10-12 19:40:47 -07:00
committed by Florent Vilmart
parent f0b7ffcdd6
commit 9145c88562
8 changed files with 10 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ If you have a non-bug question, ask on Stack Overflow or Server Fault:
- https://stackoverflow.com/questions/tagged/parse.com - https://stackoverflow.com/questions/tagged/parse.com
- https://serverfault.com/tags/parse - https://serverfault.com/tags/parse
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 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
--- Please use this template. If you don't use this template, your issue may be closed without comment. --- --- Please use this template. If you don't use this template, your issue may be closed without comment. ---

View File

@@ -35,7 +35,7 @@ describe_only_db('mongo')('MongoStorageAdapter', () => {
); );
}); });
// https://github.com/ParsePlatform/parse-server/pull/148#issuecomment-180407057 // https://github.com/parse-community/parse-server/pull/148#issuecomment-180407057
it('preserves replica sets', () => { it('preserves replica sets', () => {
spyOn(MongoClient, 'connect').and.returnValue(Promise.resolve(null)); spyOn(MongoClient, 'connect').and.returnValue(Promise.resolve(null));
new MongoStorageAdapter({ new MongoStorageAdapter({

View File

@@ -54,7 +54,7 @@ function RestQuery(config, auth, className, restWhere = {}, restOptions = {}, cl
this.include = []; this.include = [];
// If we have keys, we probably want to force some includes (n-1 level) // If we have keys, we probably want to force some includes (n-1 level)
// See issue: https://github.com/ParsePlatform/parse-server/issues/3185 // See issue: https://github.com/parse-community/parse-server/issues/3185
if (restOptions.hasOwnProperty('keys')) { if (restOptions.hasOwnProperty('keys')) {
const keysForInclude = restOptions.keys.split(',').filter((key) => { const keysForInclude = restOptions.keys.split(',').filter((key) => {
// At least 2 components // At least 2 components

View File

@@ -118,7 +118,7 @@ export class UsersRouter extends ClassesRouter {
delete user.password; delete user.password;
// Sometimes the authData still has null on that keys // Sometimes the authData still has null on that keys
// https://github.com/ParsePlatform/parse-server/issues/935 // https://github.com/parse-community/parse-server/issues/935
if (user.authData) { if (user.authData) {
Object.keys(user.authData).forEach((provider) => { Object.keys(user.authData).forEach((provider) => {
if (user.authData[provider] === null) { if (user.authData[provider] === null) {

View File

@@ -82,7 +82,7 @@ export default {
}, },
"push": { "push": {
env: "PARSE_SERVER_PUSH", env: "PARSE_SERVER_PUSH",
help: "Configuration for push, as stringified JSON. See https://github.com/ParsePlatform/parse-server/wiki/Push", help: "Configuration for push, as stringified JSON. See http://docs.parseplatform.org/parse-server/guide/#push-notifications",
action: objectParser action: objectParser
}, },
"scheduledPush": { "scheduledPush": {
@@ -92,12 +92,12 @@ export default {
}, },
"oauth": { "oauth": {
env: "PARSE_SERVER_OAUTH_PROVIDERS", env: "PARSE_SERVER_OAUTH_PROVIDERS",
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", 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",
action: objectParser action: objectParser
}, },
"auth": { "auth": {
env: "PARSE_SERVER_AUTH_PROVIDERS", env: "PARSE_SERVER_AUTH_PROVIDERS",
help: "Configuration for your authentication providers, as stringified JSON. See https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide#oauth", help: "Configuration for your authentication providers, as stringified JSON. See http://docs.parseplatform.org/parse-server/guide/#oauth-and-3rd-party-authentication",
action: objectParser action: objectParser
}, },
"fileKey": { "fileKey": {

View File

@@ -11,7 +11,7 @@ const help = function(){
console.log(' Get Started guide:'); console.log(' Get Started guide:');
console.log(''); console.log('');
console.log(' Please have a look at the get started guide!'); console.log(' Please have a look at the get started guide!');
console.log(' https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide'); console.log(' http://docs.parseplatform.org/parse-server/guide/');
console.log(''); console.log('');
console.log(''); console.log('');
console.log(' Usage with npm start'); console.log(' Usage with npm start');

View File

@@ -57,7 +57,7 @@ ParseCloud._removeAllHooks = () => {
ParseCloud.useMasterKey = () => { ParseCloud.useMasterKey = () => {
// eslint-disable-next-line // eslint-disable-next-line
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") 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")
} }
ParseCloud.httpRequest = require("./httpRequest"); ParseCloud.httpRequest = require("./httpRequest");

View File

@@ -5,4 +5,4 @@ allowed in hostnames. While this results in a slightly incorrect parsed result,
as the hostname field for a mongodb should be an array of replica sets, it's as the hostname field for a mongodb should be an array of replica sets, it's
good enough to let us pull out and escape the auth portion of the URL. good enough to let us pull out and escape the auth portion of the URL.
See also: https://github.com/ParsePlatform/parse-server/pull/986 https://github.com/parse-community/parse-server/pull/986