Skip to content

Commit 6241c94

Browse files
Arthur Cinaderflovilmart
authored andcommitted
replace some outdated parse.com links. (#694)
* replace some outdated parse.com links. * oops. missed these two. * Don't forget me! It appears that I have forgotten how to operate the git.
1 parent b936737 commit 6241c94

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/components/ACLEditor/ACLEditor.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ let ACLEditor = ({ value, onCommit }) => (
7070
title='Edit Access Control List (ACL)'
7171
advanced={false}
7272
confirmText='Save ACL'
73-
details={<a href='https://parse.com/docs/ios/guide#security-object-level-access-control'>Learn more about ACLs and app security</a>}
73+
details={<a href='http://docs.parseplatform.org/ios/guide/#object-level-access-control'>Learn more about ACLs and app security</a>}
7474
permissions={toPerms(value)}
7575
validateEntry={validateEntry}
7676
onCancel={() => {

src/dashboard/Analytics/SlowQueries/SlowQueries.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export default class SlowQueries extends TableView {
215215
description={'You haven\'t executed any queries.'}
216216
icon='gears'
217217
cta='Get started with Query'
218-
action={() => window.location = getSiteDomain() + '/docs/rest/guide#queries'} />
218+
action={() => window.location = 'http://docs.parseplatform.org/rest/guide/#queries'} />
219219
);
220220
}
221221

src/dashboard/Data/ApiConsole/ApiConsole.react.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export default class ApiConsole extends DashboardView {
166166
label={<Label text='What type of request?' />}
167167
input={methodDropdown} />
168168
<Field
169-
label={<Label text='Which endpoint?' description={<span>Not sure what endpoint you need?<br />Take a look at our <a href="https://parse.com/docs/rest/guide">REST API guide</a>.</span>} />}
169+
label={<Label text='Which endpoint?' description={<span>Not sure what endpoint you need?<br />Take a look at our <a href="http://docs.parseplatform.org/rest/guide/">REST API guide</a>.</span>} />}
170170
input={<TextInput value={this.state.endpoint} monospace={true} placeholder={'classes/_User'} onChange={(endpoint) => this.setState({endpoint})} />} />
171171
<Field
172172
label={<Label text='Use Master Key?' description={'This will bypass any ACL/CLPs.'} />}
@@ -176,7 +176,7 @@ export default class ApiConsole extends DashboardView {
176176
input={<TextInput value={this.state.runAsIdentifier} monospace={true} placeholder={'Username or ID'} onChange={(runAsIdentifier) => this.setState({runAsIdentifier})} onBlur={this.fetchUser.bind(this)} />} />
177177
<FormNote color='red' show={!!this.state.error}>{this.state.error}</FormNote>
178178
<Field
179-
label={<Label text='Query parameters' description={<span>Learn more about query parameters in our <a href="https://parse.com/docs/rest/guide#queries">REST API guide</a>.</span>} />}
179+
label={<Label text='Query parameters' description={<span>Learn more about query parameters in our <a href="http://docs.parseplatform.org/rest/guide/#queries">REST API guide</a>.</span>} />}
180180
input={<TextInput value={this.state.parameters} monospace={true} multiline={true} placeholder={parameterPlaceholder} onChange={(parameters) => this.setState({parameters})} />} />
181181
</Fieldset>
182182
<Fieldset

src/dashboard/Data/CloudCode/CloudCode.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export default class CloudCode extends DashboardView {
102102
icon='folder-outline'
103103
description={'When you deploy your cloud code, you\u2019ll be able to see your files here'}
104104
cta='Get started with Cloud Code'
105-
action={() => window.location = 'https://parse.com/docs/cloudcode/guide'} />
105+
action={() => window.location = 'http://docs.parseplatform.org/cloudcode/guide'} />
106106
</div>
107107
);
108108
} else {

src/dashboard/Data/Logs/Logs.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export default class Logs extends DashboardView {
9797
title='No logs in the last 30 days'
9898
description='When you start using Cloud Code, your logs will show up here.'
9999
cta='Learn more'
100-
action={() => window.location = 'https://parse.com/docs/cloudcode/guide'} />
100+
action={() => window.location = 'http://docs.parseplatform.org/cloudcode/guide'} />
101101
</div>
102102
);
103103
} else {

src/dashboard/Push/PushDetails.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import { Link } from 'react-router';
3535
import { Promise } from 'parse';
3636
import { tableInfoBuilder } from 'lib/PushUtils';
3737

38-
const EXP_STATS_URL = 'https://www.parse.com/docs/ios/guide#push-notifications-push-experiments';
38+
const EXP_STATS_URL = 'http://docs.parseplatform.org/ios/guide/#push-experiments';
3939

4040
let getMessage = (payload) => {
4141
if(payload) {

src/dashboard/Push/PushIndex.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ export default class PushIndex extends DashboardView {
408408
description={emptyStateContent[type].description}
409409
icon='push-solid'
410410
cta={emptyStateContent[type].cta}
411-
action={'https://www.parse.com/docs/push_guide'} />
411+
action={'http://docs.parseplatform.org/ios/guide/#push-notifications'} />
412412
);
413413
}
414414

0 commit comments

Comments
 (0)