Skip to content

Commit

Permalink
b
Browse files Browse the repository at this point in the history
  • Loading branch information
polterguy committed Jan 4, 2024
1 parent 9dde536 commit 13f46c3
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
<a
class="read_more_help mt-3"
mat-button
*ngIf="help_url"
target="_blank"
[href]="help_url">
Read more ...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ meta data for each endpoint, such as the URL, HTTP verb, type of data consumed a
authorization requirements, and more. Once an endpoint is invoked, a health check test can be created
to sanity check the system. This component also supports providing JSON payloads to POST and PUT endpoints.`;

case 'tasks':
return `The tasks component allows you to create and persist tasks to your database.
case 'task-manager':
return `The task manager component allows you to create and persist tasks to your database.
You can either schedule tasks for later, either a specific date and time in the future or repeatedly,
or you can trigger tasks from other parts of your Hyperlambda code. Tasks are persisted to
your Magic database, so even if your server is restarted, scheduled tasks will for the most parts
Expand Down Expand Up @@ -262,58 +262,43 @@ optin verification and potential referential integrity issues.`;
return 'https://polterguy.github.io';

case 'chatbot-wizard':
return 'https://polterguy.github.io/documentation/magic/components/chatbot-wizard/';
return 'https://polterguy.github.io/dashboard/chatbot-wizard/';

case 'sql-studio':
return 'https://polterguy.github.io/documentation/magic/components/sql/';
return 'https://polterguy.github.io/dashboard/sql-studio/';

case 'databases':
return 'https://polterguy.github.io/documentation/magic/components/databases/';
return 'https://polterguy.github.io/dashboard/databases/';

case 'endpoint-generator':
return 'https://polterguy.github.io/documentation/magic/components/crudifier/backend/';

case 'frontend-generator':
return 'https://polterguy.github.io/documentation/magic/components/crudifier/frontend/';
return 'https://polterguy.github.io/dashboard/endpoint-generator/';

case 'hyper-ide':
return 'https://polterguy.github.io/documentation/magic/components/hyper-ide/';
return 'https://polterguy.github.io/dashboard/hyper-ide/';

case 'user-roles-management':
return 'https://polterguy.github.io/documentation/magic/components/auth/';
return 'https://polterguy.github.io/dashboard/users-roles/';

case 'endpoints':
return 'https://polterguy.github.io/documentation/magic/components/endpoints/';
return 'https://polterguy.github.io/dashboard/endpoints/';

case 'tasks':
return 'https://polterguy.github.io/documentation/magic/components/tasks/';
case 'task-manager':
return 'https://polterguy.github.io/dashboard/task-manager/';

case 'hyperlambda-playground':
return 'https://polterguy.github.io/documentation/magic/components/evaluator/';

case 'sockets':
return 'https://polterguy.github.io/documentation/magic/components/sockets/';
return 'https://polterguy.github.io/dashboard/hyperlambda-playground/';

case 'plugins':
return 'https://polterguy.github.io/documentation/magic/components/bazar/';
return 'https://polterguy.github.io/dashboard/plugins/';

case 'machine-learning':
return 'https://polterguy.github.io/documentation/magic/components/machine-learning/';
return 'https://polterguy.github.io/dashboard/machine-learning/';

case 'configuration':
return 'https://polterguy.github.io/documentation/magic/components/config/';

case 'health-check':
return 'https://polterguy.github.io/documentation/magic/components/assumptions/';
return 'https://polterguy.github.io/dashboard/configuration/';

case 'log':
return 'https://polterguy.github.io/documentation/magic/components/log/';

case 'help-center':
return 'https://polterguy.github.io/documentation/magic/';

case 'user-profile':
return 'https://polterguy.github.io/documentation/magic/components/profile/';
return 'https://polterguy.github.io/dashboard/log/';
}
}

Expand Down Expand Up @@ -388,8 +373,8 @@ optin verification and potential referential integrity issues.`;
exact: false,
},
{
name: 'Tasks',
url: '/tasks',
name: 'Task Manager',
url: '/task-manager',
exact: false,
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,15 @@ <h3 mat-dialog-title>Generate token</h3>

<button
mat-button
color="primary"
mat-dialog-close>
Close
(click)="copy()">
Copy
</button>

<button
mat-flat-button
color="primary"
(click)="copy()">
Copy
mat-dialog-close>
Close
</button>

</div>
2 changes: 1 addition & 1 deletion frontend/src/app/modules/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const routes: Routes = [
loadChildren: () => import('src/app/components/protected/create/chatbot-wizard/_module/chatbot-wizard.module').then(m => m.ChatbotWizardModule)
},
{
path: 'tasks',
path: 'task-manager',
loadChildren: () => import('src/app/components/protected/manage/tasks/_module/task.module').then(m => m.TaskModule)
},
{
Expand Down

0 comments on commit 13f46c3

Please sign in to comment.