-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detailed ANSSI hygiene guide (#1152)
- Loading branch information
1 parent
1ef81e4
commit 063d3f9
Showing
26 changed files
with
4,469 additions
and
81 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
46 changes: 46 additions & 0 deletions
46
backend/core/migrations/0045_alter_appliedcontrol_category_and_more.py
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Generated by Django 5.1.1 on 2024-12-07 22:10 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("core", "0044_qualification"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="appliedcontrol", | ||
name="category", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("policy", "Policy"), | ||
("process", "Process"), | ||
("technical", "Technical"), | ||
("physical", "Physical"), | ||
("procedure", "Procedure"), | ||
], | ||
max_length=20, | ||
null=True, | ||
verbose_name="Category", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="referencecontrol", | ||
name="category", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("policy", "Policy"), | ||
("process", "Process"), | ||
("technical", "Technical"), | ||
("physical", "Physical"), | ||
("procedure", "Procedure"), | ||
], | ||
max_length=20, | ||
null=True, | ||
verbose_name="Category", | ||
), | ||
), | ||
] |
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
3,214 changes: 3,214 additions & 0 deletions
3,214
backend/library/libraries/anssi-guide-hygiene-detail.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.