Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance/tprm #861

Merged
merged 35 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
85abe8b
feat: add entity assessment author help text
Mohamed-Hacene Sep 20, 2024
d915a21
feat: add send mail button for questionnaire
Mohamed-Hacene Sep 23, 2024
d2496bb
Merge branch 'main' into enhance/tprm
Mohamed-Hacene Sep 23, 2024
6212191
style: make assessment/questionnaire mode sticky top
Mohamed-Hacene Sep 23, 2024
59cf03b
feat: allow assessment mode for third party
Mohamed-Hacene Sep 25, 2024
1918317
feat: allow requirement assessments for third party
Mohamed-Hacene Sep 25, 2024
65f1bd7
feat: add question tag in audit tree view
Mohamed-Hacene Sep 25, 2024
622222b
chore: run format
Mohamed-Hacene Sep 25, 2024
773e52c
feat: add questions in audit report
Mohamed-Hacene Sep 25, 2024
4457da6
feat: hide csv export for third party
Mohamed-Hacene Sep 25, 2024
624b36b
Merge branch 'main' into enhance/tprm
Mohamed-Hacene Sep 25, 2024
2a2284c
feat: align tprm permissions with access control model
Mohamed-Hacene Sep 27, 2024
4e9bce6
chore: run format
Mohamed-Hacene Sep 27, 2024
b3b52e2
Merge branch 'main' into enhance/tprm
Mohamed-Hacene Sep 30, 2024
2bf29b7
Merge branch 'main' into enhance/tprm
Mohamed-Hacene Sep 30, 2024
d68f8c3
Merge branch 'enhance/tprm' of github.com:intuitem/ciso-assistant-com…
Mohamed-Hacene Sep 30, 2024
3b0b85b
feat: add representatives field in entity assessment
Mohamed-Hacene Oct 1, 2024
9ea3cdc
feat: improve layout
Mohamed-Hacene Oct 3, 2024
45273d9
fix: fix requirements tags layout
Mohamed-Hacene Oct 4, 2024
476ae11
fix: comma in en.json
Mohamed-Hacene Oct 4, 2024
a3861c6
feat: improve requirement assessment edit page server complexity
Mohamed-Hacene Oct 4, 2024
98a3dda
chore: format
Mohamed-Hacene Oct 4, 2024
788fccf
merge: main
Mohamed-Hacene Oct 8, 2024
9f2f558
Merge branch 'main' into enhance/tprm
Mohamed-Hacene Oct 8, 2024
977eafa
chore: add missing semi colons
Mohamed-Hacene Oct 8, 2024
628c5b9
fix: check not null before length
Mohamed-Hacene Oct 9, 2024
316f89e
fix: catch mail failure at user creation during representative creation
Mohamed-Hacene Oct 9, 2024
10590f3
fix: typo
Mohamed-Hacene Oct 9, 2024
3609ba9
fix: modal mail confirm props form
Mohamed-Hacene Oct 9, 2024
02bc8f3
feat: improve questionnaire mail error handling
Mohamed-Hacene Oct 9, 2024
1585af7
fix: authors field in entity assessment serializer
Mohamed-Hacene Oct 9, 2024
34788db
Merge branch 'main' into enhance/tprm
Mohamed-Hacene Oct 9, 2024
8a5e015
Merge branch 'main' into enhance/tprm
nas-tabchiche Oct 9, 2024
3838eef
feat: improve questionnaire confrm modal message
Mohamed-Hacene Oct 10, 2024
1f9699e
Merge branch 'main' into enhance/tprm
nas-tabchiche Oct 11, 2024
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: 2 additions & 0 deletions backend/core/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ def get_sorted_requirement_nodes_rec(start: list) -> dict:
"is_scored": req_as.is_scored if req_as else None,
"score": req_as.score if req_as else None,
"max_score": max_score if req_as else None,
"question": req_as.answer if req_as else None,
"mapping_inference": req_as.mapping_inference if req_as else None,
"status_display": req_as.get_status_display() if req_as else None,
"status_i18n": camel_case(req_as.status) if req_as else None,
Expand Down Expand Up @@ -320,6 +321,7 @@ def get_sorted_requirement_nodes_rec(start: list) -> dict:
"is_scored": child_req_as.is_scored if child_req_as else None,
"score": child_req_as.score if child_req_as else None,
"max_score": max_score if child_req_as else None,
"question": child_req_as.answer if child_req_as else None,
"mapping_inference": child_req_as.mapping_inference
if child_req_as
else None,
Expand Down
Loading
Loading