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 ProcessMaker/Http/Middleware/GenerateMenus.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public function handle(Request $request, Closure $next)
'id' => 'dropdownItem',
]);
$submenu->add(__('Documentation'), [
'url' => 'https://processmaker.gitbook.io/processmaker',
'url' => 'https://docs.processmaker.com',
'icon' => 'fa-question-circle',
'id' => 'dropdownItem',
'target' => '_blank',
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ https://processmaker.atlassian.net/wiki/spaces/PM4/pages/480149598/Server+Deploy

The online documentation for usage of ProcessMaker 4 can be found by clicking the link below.

https://processmaker.gitbook.io/processmaker/
https://docs.processmaker.com/

## Testing
All PRs for PM4 and it's packages should be accompanied by a test.
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/NavbarProfile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</li>
<li class="list-group-item px-2">
<a
href="https://processmaker.gitbook.io/processmaker/"
href="https://docs.processmaker.com/"
role="menuitem"
:aria-label="$t('Documentation')"
target="_blank"
Expand Down
8 changes: 4 additions & 4 deletions resources/js/processes/scripts/customFilters.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Vue.filter("lua", (value) => {
line = line.replace("{dataVariable}", "data");
line = line.replace("{configVariable}", "config");
line = line.replace("{apiExample}", "users_api:get_users(filter, order_by, order_direction, per_page, include)");
line = line.replace("{apiDocsUrl}", "https://processmaker.gitbook.io/processmaker/designing-processes/scripts/script-editor#processmaker-and-environment-variable-syntax-usage-sdk-and-examples");
line = line.replace("{apiDocsUrl}", "https://docs.processmaker.com/designing-processes/scripts/script-editor#processmaker-and-environment-variable-syntax-usage-sdk-and-examples");
format = ` ${line}`;
}
content.push(format);
Expand All @@ -89,7 +89,7 @@ Vue.filter("csharp", (value) => {
line = line.replace("{dataVariable}", "data");
line = line.replace("{configVariable}", "config");
line = line.replace("{apiExample}", "apiInstance.GetUserById(id)");
line = line.replace("{apiDocsUrl}", "https://processmaker.gitbook.io/processmaker/designing-processes/scripts/script-editor#processmaker-and-environment-variable-syntax-usage-sdk-and-examples");
line = line.replace("{apiDocsUrl}", "https://docs.processmaker.com/designing-processes/scripts/script-editor#processmaker-and-environment-variable-syntax-usage-sdk-and-examples");
format = line;
}
content.push(format);
Expand All @@ -114,7 +114,7 @@ Vue.filter("java", (value) => {
line = line.replace("{dataVariable}", "data");
line = line.replace("{configVariable}", "config");
line = line.replace("{apiExample}", "apiInstance.getUserByID(id);");
line = line.replace("{apiDocsUrl}", "https://processmaker.gitbook.io/processmaker/designing-processes/scripts/script-editor#processmaker-and-environment-variable-syntax-usage-sdk-and-examples");
line = line.replace("{apiDocsUrl}", "https://docs.processmaker.com/designing-processes/scripts/script-editor#processmaker-and-environment-variable-syntax-usage-sdk-and-examples");
format = ` * ${line}`;
}
content.push(format);
Expand All @@ -135,7 +135,7 @@ Vue.filter("python", (value) => {
line = line.replace("{dataVariable}", "the data variable");
line = line.replace("{configVariable}", "the config variable");
line = line.replace("{apiExample}", ":");
line = line.replace("{apiDocsUrl}", "https://processmaker.gitbook.io/processmaker/designing-processes/scripts/script-editor#processmaker-and-environment-variable-syntax-usage-sdk-and-examples");
line = line.replace("{apiDocsUrl}", "https://docs.processmaker.com/designing-processes/scripts/script-editor#processmaker-and-environment-variable-syntax-usage-sdk-and-examples");
format = `# ${line}`;
content.push(format);
});
Expand Down
2 changes: 1 addition & 1 deletion resources/views/about/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<hr>
<a href="https://github.com/ProcessMaker/processmaker/issues/new" target="_blank">{{__('Report an issue')}} <i class="fas fa-caret-right fa-lg float-right mr-1"></i></a>
<hr>
<a href="https://processmaker.gitbook.io/processmaker/" target="_blank">{{__('Documentation')}} <i class="fas fa-caret-right fa-lg float-right mr-1"></i></a>
<a href="https://docs.processmaker.com/" target="_blank">{{__('Documentation')}} <i class="fas fa-caret-right fa-lg float-right mr-1"></i></a>
<hr>
@if ($packages)
<h5>{{ __('Packages Installed') }}</h5>
Expand Down