Skip to content

Commit

Permalink
Detailed ANSSI hygiene guide
Browse files Browse the repository at this point in the history
Create anssi-guide-hygiene-detail.xlsx
Add procedure category
update doc-pol
update convert_library
  • Loading branch information
eric-intuitem committed Dec 8, 2024
1 parent fa206e5 commit 47cf161
Show file tree
Hide file tree
Showing 23 changed files with 4,388 additions and 52 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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'),
),
]
1 change: 1 addition & 0 deletions backend/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -780,6 +780,7 @@ class ReferenceControl(ReferentialObjectMixin, I18nObjectMixin):
("process", _("Process")),
("technical", _("Technical")),
("physical", _("Physical")),
("procedure", _("Procedure")),
]

CSF_FUNCTION = [
Expand Down
3,209 changes: 3,209 additions & 0 deletions backend/library/libraries/anssi-guide-hygiene-detail.yaml

Large diffs are not rendered by default.

Loading

0 comments on commit 47cf161

Please sign in to comment.