-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
88 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,41 @@ | ||
export default defineAppConfig({ | ||
ui: { | ||
primary: 'malibu', | ||
gray: 'slate', | ||
footer: { | ||
bottom: { | ||
left: 'text-sm text-gray-500 dark:text-gray-400', | ||
wrapper: 'border-t border-gray-200 dark:border-gray-800', | ||
}, | ||
}, | ||
icons: { | ||
dynamic: true, | ||
// Nuxt UI Pro Icons | ||
dark: 'i-mdi-moon-and-stars', | ||
light: 'i-mdi-weather-sunny', | ||
system: 'i-mdi-computer', | ||
search: 'i-mdi-search', | ||
external: 'i-mdi-external-link', | ||
chevron: 'i-mdi-chevron-down', | ||
hash: 'i-mdi-hashtag', | ||
menu: 'i-mdi-menu', | ||
close: 'i-mdi-window-close', | ||
check: 'i-mdi-check-circle', | ||
}, | ||
}, | ||
toc: { | ||
bottom: { | ||
edit: 'https://github.com/fivenet-app/fivenet/edit/main/content', | ||
}, | ||
}, | ||
links: { | ||
imprint: '', | ||
privacyPolicy: '', | ||
}, | ||
}); | ||
ui: { | ||
primary: 'malibu', | ||
gray: 'slate', | ||
footer: { | ||
bottom: { | ||
left: 'text-sm text-gray-500 dark:text-gray-400', | ||
wrapper: 'border-t border-gray-200 dark:border-gray-800', | ||
}, | ||
}, | ||
icons: { | ||
dynamic: true, | ||
// Nuxt UI Pro Icons | ||
dark: 'i-mdi-moon-and-stars', | ||
light: 'i-mdi-weather-sunny', | ||
system: 'i-mdi-computer', | ||
search: 'i-mdi-search', | ||
external: 'i-mdi-external-link', | ||
chevron: 'i-mdi-chevron-down', | ||
hash: 'i-mdi-hashtag', | ||
menu: 'i-mdi-menu', | ||
close: 'i-mdi-window-close', | ||
check: 'i-mdi-check-circle', | ||
}, | ||
}, | ||
|
||
toc: { | ||
bottom: { | ||
edit: 'https://github.com/fivenet-app/fivenet/edit/main/content', | ||
}, | ||
}, | ||
|
||
links: { | ||
imprint: '', | ||
privacyPolicy: '', | ||
}, | ||
|
||
footer: { | ||
colorMode: false, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
title: Languages (i18n) | ||
--- | ||
|
||
FiveNet supports multiple languages. | ||
|
||
Current list of languages: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,60 @@ | ||
--- | ||
title: "Qualifications" | ||
title: Qualifications | ||
--- | ||
|
||
## What is a Qualifications? | ||
|
||
* An access level protected entity with a "public" (as in "anyone can see") facing name and description. | ||
* A training/module that someone has been "granted" or has succcessfully taken the test for. | ||
* A qualification can require certain prerequisites. A prerequisite can be a job rank, other successful qualification. | ||
- An access level protected entity with a "public" (as in "anyone can see") facing name and description. | ||
- A training/module that someone has been "granted" or has succcessfully taken the test for. | ||
- A qualification can require certain prerequisites. A prerequisite can be a job rank, other successful qualification. | ||
|
||
### What elements are needed? | ||
|
||
* Qualification: Holds all basic infos about the qualification. | ||
* Access: Holds the access levels to the qualification. | ||
* Requirements: Requirements to be able to take the qualification. -> Don't deny the access to the qualification like access, but are required to send a request or to take the qualification. | ||
* Requests: List of user requests to take the test for the qualification. | ||
* Results: A "mapping" of score of an user test. | ||
* Tests: Test progress of (started) tests from users. | ||
* Info/Config of the Test: E.g., how many questions need to be right to pass, how much time do they have, etc. | ||
* Test Questions: Questions for the qualification tests. | ||
* User Test Answers: Answered questions "waiting for approval" by a "trainer". | ||
- Qualification: Holds all basic infos about the qualification. | ||
* Access: Holds the access levels to the qualification. | ||
* Requirements: Requirements to be able to take the qualification. -> Don't deny the access to the qualification like access, but are required to send a request or to take the qualification. | ||
- Requests: List of user requests to take the test for the qualification. | ||
- Results: A "mapping" of score of an user test. | ||
- Tests: Test progress of (started) tests from users. | ||
* Info/Config of the Test: E.g., how many questions need to be right to pass, how much time do they have, etc. | ||
* Test Questions: Questions for the qualification tests. | ||
* User Test Answers: Answered questions "waiting for approval" by a "trainer". | ||
|
||
### Access Levels | ||
|
||
Similarily structured to documents access levels. | ||
|
||
* Blocked. | ||
* View. | ||
* Request. | ||
* Take. | ||
* Grade. | ||
* Edit. | ||
- Blocked. | ||
- View. | ||
- Request. | ||
- Take. | ||
- Grade. | ||
- Edit. | ||
|
||
## Exams | ||
|
||
3 modes for a qualification with an exam: | ||
|
||
* Disabled. | ||
* Request needed. | ||
* Enabled. | ||
- Disabled. | ||
- Request needed. | ||
- Enabled. | ||
|
||
### Flow - Request needed | ||
|
||
<mermaid> | ||
::mermaid | ||
sequenceDiagram | ||
User->>+Qualification: Send Request | ||
Approver-->Qualification: Approve Request | ||
User-->Exam: Take exam | ||
User->>Exam: Submit exam response | ||
Approver->>Exam: Create Result | ||
</mermaid> | ||
User->>+Qualification: Send Request | ||
Approver-->Qualification: Approve Request | ||
User-->Exam: Take exam | ||
User->>Exam: Submit exam response | ||
Approver->>Exam: Create Result | ||
:: | ||
|
||
### Flow - Enabled | ||
|
||
<mermaid> | ||
::mermaid | ||
sequenceDiagram | ||
User-->Exam: Take exam | ||
User->>Exam: Submit exam response | ||
Approver->>Exam: Create Result | ||
|
||
</mermaid> | ||
User-->Exam: Take exam | ||
User->>Exam: Submit exam response | ||
Approver->>Exam: Create Result | ||
:: |