Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/ACLEditor/ACLEditor.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ let ACLEditor = ({ value, onCommit }) => (
title='Edit Access Control List (ACL)'
advanced={false}
confirmText='Save ACL'
details={<a href='https://parse.com/docs/ios/guide#security-object-level-access-control'>Learn more about ACLs and app security</a>}
details={<a href='http://docs.parseplatform.org/ios/guide/#object-level-access-control'>Learn more about ACLs and app security</a>}
permissions={toPerms(value)}
validateEntry={validateEntry}
onCancel={() => {
Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/Analytics/SlowQueries/SlowQueries.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export default class SlowQueries extends TableView {
description={'You haven\'t executed any queries.'}
icon='gears'
cta='Get started with Query'
action={() => window.location = getSiteDomain() + '/docs/rest/guide#queries'} />
action={() => window.location = 'http://docs.parseplatform.org/rest/guide/#queries'} />
);
}

Expand Down
4 changes: 2 additions & 2 deletions src/dashboard/Data/ApiConsole/ApiConsole.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default class ApiConsole extends DashboardView {
label={<Label text='What type of request?' />}
input={methodDropdown} />
<Field
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>} />}
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>} />}
input={<TextInput value={this.state.endpoint} monospace={true} placeholder={'classes/_User'} onChange={(endpoint) => this.setState({endpoint})} />} />
<Field
label={<Label text='Use Master Key?' description={'This will bypass any ACL/CLPs.'} />}
Expand All @@ -176,7 +176,7 @@ export default class ApiConsole extends DashboardView {
input={<TextInput value={this.state.runAsIdentifier} monospace={true} placeholder={'Username or ID'} onChange={(runAsIdentifier) => this.setState({runAsIdentifier})} onBlur={this.fetchUser.bind(this)} />} />
<FormNote color='red' show={!!this.state.error}>{this.state.error}</FormNote>
<Field
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>} />}
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>} />}
input={<TextInput value={this.state.parameters} monospace={true} multiline={true} placeholder={parameterPlaceholder} onChange={(parameters) => this.setState({parameters})} />} />
</Fieldset>
<Fieldset
Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/Data/CloudCode/CloudCode.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default class CloudCode extends DashboardView {
icon='folder-outline'
description={'When you deploy your cloud code, you\u2019ll be able to see your files here'}
cta='Get started with Cloud Code'
action={() => window.location = 'https://parse.com/docs/cloudcode/guide'} />
action={() => window.location = 'http://docs.parseplatform.org/cloudcode/guide'} />
</div>
);
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/Data/Logs/Logs.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default class Logs extends DashboardView {
title='No logs in the last 30 days'
description='When you start using Cloud Code, your logs will show up here.'
cta='Learn more'
action={() => window.location = 'https://parse.com/docs/cloudcode/guide'} />
action={() => window.location = 'http://docs.parseplatform.org/cloudcode/guide'} />
</div>
);
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/Push/PushDetails.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import { Link } from 'react-router';
import { Promise } from 'parse';
import { tableInfoBuilder } from 'lib/PushUtils';

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

let getMessage = (payload) => {
if(payload) {
Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/Push/PushIndex.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ export default class PushIndex extends DashboardView {
description={emptyStateContent[type].description}
icon='push-solid'
cta={emptyStateContent[type].cta}
action={'https://www.parse.com/docs/push_guide'} />
action={'http://docs.parseplatform.org/ios/guide/#push-notifications'} />
);
}

Expand Down