Added the Porter Stemmer module to improve searches. This doesn't deal with some...
[yaffs-website] / web / modules / contrib / security_review / config / schema / security_review.schema.yml
1 # The module's main settings.
2 security_review.settings:
3   type: config_entity
4   mapping:
5     configured:
6       type: boolean
7       label: 'Has been configured'
8     untrusted_roles:
9       type: sequence
10       label: 'Untrusted roles'
11       sequence:
12         type: string
13         label: 'Role ID'
14     log:
15       type: boolean
16       label: 'Logging enabled'
17
18 # Defines a security check's skip informations and settings.
19 security_review.check.*:
20   type: config_entity
21   mapping:
22     id:
23       type: string
24       label: 'Check ID'
25     skipped:
26       type: boolean
27       label: 'Is skipped'
28     skipped_by:
29       type: integer
30       label: 'Skipped by'
31     skipped_on:
32       type: integer
33       label: 'Skipped on'
34     settings:
35       # Checks that need storage for settings are advised to define their settings schema.
36       # This way type-strict per-check settings storage can be created.
37       type: security_review.check_settings.[%parent.id]
38
39 # Setting storage for Base URL check.
40 security_review.check_settings.security_review-base_url_set:
41   type: mapping
42   mapping:
43     method:
44       type: string
45       label: 'Base URL identification method'