targo-frontend/src/modules/help/models/help-module.model.ts

55 lines
2.9 KiB
TypeScript

export interface HelpModule {
dashboard: string;
personal_profile: string;
timesheet: string;
employee_list: string;
employee_management: string;
timesheets_approval: string;
};
export const module_access_help: string[] = [
'help.tutorial.personal_profile.title',
'help.tutorial.timesheets.title',
'help.tutorial.employee_list.title',
'help.tutorial.employee_management.title',
'help.tutorial.timesheets_approval.title',
];
export const profile_options = [
{ label: 'help.tutorial.personal_profile.personal_info', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.personal_profile.professional_info', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.shared.display', path: "https://picsum.photos/500/300" },
];
export const timesheet_options = [
{ label: 'help.tutorial.timesheet.create_shift', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.timesheet.update_shift', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.timesheet.delete_shift', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.timesheet.create_shift', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.timesheet.update_shift', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.timesheet.delete_shift', path: "https://picsum.photos/500/300" },
];
export const employee_list_options = [
{ label: 'help.tutorial.employee_list.terminated_employees', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.shared.display', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.shared.search', path: "https://picsum.photos/500/300" },
];
export const employee_management_options = [
{ label: 'help.tutorial.employee_list.terminated_employees', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.employee_management.create_employee', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.employee_management.update_employee', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.employee_management.module_access', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.employee_management.schedule_preset', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.employee_management.terminate_employee', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.shared.display', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.shared.search', path: "https://picsum.photos/500/300" },
];
export const timesheets_approval = [
{ label: 'help.tutorial.timesheets_approval.approval', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.timesheets_approval.inspect', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.shared.display', path: "https://picsum.photos/500/300" },
{ label: 'help.tutorial.shared.search', path: "https://picsum.photos/500/300" },
]