Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cd2ee62

Browse files
committedMar 17, 2025·
Clarify/group deprecated template sections
1 parent bd712b7 commit cd2ee62

20 files changed

+133
-44
lines changed
 

‎frontend/src/components/filter-dropdown/nested-filter-list.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,14 @@ const CheckboxOrGroup = ({ option, children, selected, onCheck, subSelectionCoun
206206
);
207207
}
208208

209+
const isChecked = selected.includes(value);
210+
209211
return (
210212
<StyledCheckbox
211213
value={value}
212214
size="small"
213-
checked={selected.includes(value)}
214-
indeterminate={option.indeterminate}
215+
checked={isChecked}
216+
indeterminate={!isChecked && option.indeterminate}
215217
onChange={() => onCheck(value)}
216218
>
217219
<HStack align="center" gap="0 2">

‎frontend/src/components/maltekstseksjoner/filters.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export const Filters = ({ maltekst, query }: Props) => {
3131
<TemplateSectionSelect
3232
selected={maltekst.templateSectionIdList}
3333
onChange={(templateSectionIdList) => updateTemplateSection({ id: maltekst.id, templateSectionIdList, query })}
34+
includeDeprecated
3435
>
3536
Maler og seksjoner
3637
</TemplateSectionSelect>

‎frontend/src/components/maltekstseksjoner/maltekstseksjon/maltekstseksjon-list-filters.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export const Filters = () => {
3030
onChange={(value) => setFilter('templateSectionIdList', value)}
3131
includeNoneOption
3232
templatesSelectable
33+
includeDeprecated
3334
>
3435
Maler og seksjoner
3536
</TemplateSectionSelect>

‎frontend/src/components/smart-editor-texts/edit/edit.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ const Filters = ({ text, query, filters }: FiltersProps) => {
104104
selected={templateSectionIdList}
105105
onChange={(v) => updateTemplateSectionIdList({ id, query, templateSectionIdList: v })}
106106
templatesSelectable
107+
includeDeprecated
107108
>
108109
Maler og seksjoner
109110
</TemplateSectionSelect>

‎frontend/src/components/smart-editor-texts/filters.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export const Filters = ({ textType, className }: Props) => {
4848
onChange={(value) => setFilter('templateSectionIdList', value)}
4949
includeNoneOption
5050
templatesSelectable
51+
includeDeprecated
5152
>
5253
Maler og seksjoner
5354
</TemplateSectionSelect>

‎frontend/src/components/smart-editor-texts/get-template-options.tsx

+82-25
Original file line numberDiff line numberDiff line change
@@ -2,60 +2,117 @@ import { type NestedOption, OptionType } from '@app/components/filter-dropdown/n
22
import { GLOBAL, LIST_DELIMITER, NONE_OPTION, WILDCARD } from '@app/components/smart-editor-texts/types';
33
import { MALTEKST_SECTION_NAMES } from '@app/components/smart-editor/constants';
44
import { getTemplateSections } from '@app/hooks/use-template-sections';
5-
import { TemplateSections } from '@app/plate/template-sections';
5+
import { DeprecatedTemplateSections, TemplateSections } from '@app/plate/template-sections';
66
import { TEMPLATES } from '@app/plate/templates/templates';
77

88
export const ALL_TEMPLATES_LABEL = 'Alle maler';
9+
export const DEPRECATED_SECTIONS_LABEL = 'Utgåtte seksjoner';
910

10-
export const getTemplateOptions = (includeNone: boolean, templatesSelectable: boolean): NestedOption[] => {
11-
const options: NestedOption[] = TEMPLATES.map(({ templateId, tittel }) => {
11+
export const getTemplateOptions = (
12+
selected: string[],
13+
includeNone: boolean,
14+
includeDeprecated: boolean,
15+
templatesSelectable: boolean,
16+
): NestedOption[] => {
17+
const options: NestedOption[] = [];
18+
19+
if (includeNone) {
20+
options.push({ ...NONE_OPTION, filterValue: NONE_OPTION.label, type: OptionType.OPTION });
21+
}
22+
23+
for (const { templateId, tittel, deprecatedSections } of TEMPLATES) {
1224
const { used, unused } = getTemplateSections(templateId);
1325

14-
const unusedOption = {
26+
const unusedOptions = unused.map<NestedOption>((s) => ({
27+
type: OptionType.OPTION,
28+
value: `${templateId}${LIST_DELIMITER}${s}`,
29+
label: MALTEKST_SECTION_NAMES[s],
30+
filterValue: `${tittel} ${MALTEKST_SECTION_NAMES[s]}`,
31+
indeterminate: selected.includes(`${GLOBAL}${LIST_DELIMITER}${s}`),
32+
}));
33+
34+
const unusedOptionsGroup: NestedOption = {
1535
type: OptionType.GROUP,
1636
value: 'UNUSED',
17-
label: 'Ubrukte seksjoner',
37+
label: 'Seksjoner som ikke er i denne malen',
1838
filterValue: 'Ubrukte seksjoner',
19-
options: unused.map((s) => ({
20-
type: OptionType.OPTION,
21-
value: `${templateId}${LIST_DELIMITER}${s}`,
22-
label: MALTEKST_SECTION_NAMES[s],
23-
filterValue: `${tittel} ${MALTEKST_SECTION_NAMES[s]}`,
24-
})),
39+
options: unusedOptions,
2540
};
2641

27-
const usedOptions = used.map((s) => ({
42+
const usedOptions = used.map<NestedOption>((s) => ({
2843
type: OptionType.OPTION,
2944
value: `${templateId}${LIST_DELIMITER}${s}`,
3045
label: MALTEKST_SECTION_NAMES[s],
3146
filterValue: `${tittel} ${MALTEKST_SECTION_NAMES[s]}`,
47+
indeterminate: selected.includes(`${GLOBAL}${LIST_DELIMITER}${s}`),
3248
}));
3349

34-
return {
50+
const templateOptions = usedOptions.concat(unusedOptionsGroup);
51+
52+
if (includeDeprecated && deprecatedSections.length > 0) {
53+
const deprecatedOptions = deprecatedSections.map<NestedOption>((s) => ({
54+
type: OptionType.OPTION,
55+
value: `${templateId}${LIST_DELIMITER}${s}`,
56+
label: MALTEKST_SECTION_NAMES[s],
57+
filterValue: `${tittel} ${MALTEKST_SECTION_NAMES[s]}`,
58+
indeterminate: selected.includes(`${GLOBAL}${LIST_DELIMITER}${s}`),
59+
}));
60+
61+
const deprecatedOptionsGroup: NestedOption = {
62+
type: OptionType.GROUP,
63+
value: 'DEPRECATED',
64+
label: DEPRECATED_SECTIONS_LABEL,
65+
filterValue: DEPRECATED_SECTIONS_LABEL,
66+
options: deprecatedOptions,
67+
};
68+
69+
templateOptions.push(deprecatedOptionsGroup);
70+
}
71+
72+
options.push({
3573
type: templatesSelectable ? OptionType.OPTION : OptionType.GROUP,
3674
label: tittel,
3775
value: `${templateId}${LIST_DELIMITER}${WILDCARD}`,
3876
filterValue: templateId,
39-
options: usedOptions.concat(unusedOption),
77+
options: templateOptions,
78+
indeterminate: selected.some((s) => s.startsWith(`${templateId}${LIST_DELIMITER}`)),
79+
});
80+
}
81+
82+
const globalOptions: NestedOption[] = Object.values(TemplateSections).map((s) => ({
83+
type: OptionType.OPTION,
84+
value: `${GLOBAL}${LIST_DELIMITER}${s}`,
85+
label: MALTEKST_SECTION_NAMES[s],
86+
filterValue: `${ALL_TEMPLATES_LABEL} ${MALTEKST_SECTION_NAMES[s]}`,
87+
}));
88+
89+
if (includeDeprecated) {
90+
const globalDeprecatedOptions: NestedOption[] = Object.values(DeprecatedTemplateSections).map((s) => ({
91+
type: OptionType.OPTION,
92+
value: `${GLOBAL}${LIST_DELIMITER}${s}`,
93+
label: MALTEKST_SECTION_NAMES[s],
94+
filterValue: `${ALL_TEMPLATES_LABEL} ${MALTEKST_SECTION_NAMES[s]}`,
95+
}));
96+
97+
const globalDeprecatedOptionsGroup: NestedOption = {
98+
type: OptionType.GROUP,
99+
label: DEPRECATED_SECTIONS_LABEL,
100+
value: `${GLOBAL}${LIST_DELIMITER}${WILDCARD}`,
101+
filterValue: DEPRECATED_SECTIONS_LABEL,
102+
options: globalDeprecatedOptions,
40103
};
41-
});
104+
105+
globalOptions.push(globalDeprecatedOptionsGroup);
106+
}
42107

43108
options.push({
44109
type: templatesSelectable ? OptionType.OPTION : OptionType.GROUP,
45110
label: ALL_TEMPLATES_LABEL,
46111
value: GLOBAL,
47112
filterValue: '',
48-
options: Object.values(TemplateSections).map((s) => ({
49-
type: OptionType.OPTION,
50-
value: `${GLOBAL}${LIST_DELIMITER}${s}`,
51-
label: MALTEKST_SECTION_NAMES[s],
52-
filterValue: `${ALL_TEMPLATES_LABEL} ${MALTEKST_SECTION_NAMES[s]}`,
53-
})),
113+
indeterminate: selected.some((s) => s.startsWith(`${GLOBAL}${LIST_DELIMITER}`)),
114+
options: globalOptions,
54115
});
55116

56-
if (includeNone) {
57-
return [{ ...NONE_OPTION, filterValue: NONE_OPTION.label, type: OptionType.OPTION }, ...options];
58-
}
59-
60117
return options;
61118
};

‎frontend/src/components/smart-editor-texts/query-filter-selects.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ interface TemplateSelectProps {
106106
onChange: (value: string[]) => void;
107107
includeNoneOption?: boolean;
108108
templatesSelectable?: boolean;
109+
includeDeprecated?: boolean;
109110
}
110111

111112
export const TemplateSectionSelect = ({
@@ -114,10 +115,11 @@ export const TemplateSectionSelect = ({
114115
onChange,
115116
includeNoneOption = false,
116117
templatesSelectable = false,
118+
includeDeprecated = false,
117119
}: TemplateSelectProps) => {
118120
const templates = useMemo(
119-
() => getTemplateOptions(includeNoneOption, templatesSelectable),
120-
[includeNoneOption, templatesSelectable],
121+
() => getTemplateOptions(selected, includeNoneOption, includeDeprecated, templatesSelectable),
122+
[selected, includeNoneOption, includeDeprecated, templatesSelectable],
121123
);
122124

123125
return (

‎frontend/src/components/smart-editor/constants.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { TemplateSections } from '@app/plate/template-sections';
1+
import { DeprecatedTemplateSections, TemplateSections } from '@app/plate/template-sections';
22

33
export const BOOKMARK_PREFIX = 'bookmark_';
44
export const COMMENT_PREFIX = 'commentThreadId_';
55

6-
export const MALTEKST_SECTION_NAMES: Record<TemplateSections, string> = {
6+
export const MALTEKST_SECTION_NAMES: Record<TemplateSections | DeprecatedTemplateSections, string> = {
77
[TemplateSections.TITLE]: 'Dokumenttittel',
8-
[TemplateSections.INTRODUCTION_V1]: 'Introduksjon (gammel)',
9-
[TemplateSections.INTRODUCTION_V2]: 'Introduksjon v2',
8+
[DeprecatedTemplateSections.INTRODUCTION_V1]: 'Introduksjon v1',
9+
[TemplateSections.INTRODUCTION_V2]: 'Introduksjon',
1010
[TemplateSections.AVGJOERELSE]: 'Avgjørelse',
1111
[TemplateSections.ANFOERSLER]: 'Anførsler',
1212
[TemplateSections.VURDERINGEN]: 'Vurderingen vår',
@@ -16,9 +16,9 @@ export const MALTEKST_SECTION_NAMES: Record<TemplateSections, string> = {
1616
[TemplateSections.SAKSKOSTNADER]: 'Sakskostnader',
1717
[TemplateSections.REGELVERK_TITLE]: 'Regelverktittel',
1818
[TemplateSections.FREMLEGG]: 'Fremlegg',
19-
[TemplateSections.TILSVARSRETT_V1]: 'Tilsvarsrett v1 (gammel)',
20-
[TemplateSections.TILSVARSRETT_V2]: 'Tilsvarsrett v2 (gammel)',
21-
[TemplateSections.TILSVARSRETT_V3]: 'Tilsvarsrett v3',
19+
[DeprecatedTemplateSections.TILSVARSRETT_V1]: 'Tilsvarsrett v1',
20+
[DeprecatedTemplateSections.TILSVARSRETT_V2]: 'Tilsvarsrett v2',
21+
[TemplateSections.TILSVARSRETT_V3]: 'Tilsvarsrett',
2222
[TemplateSections.VEDLEGG]: 'Vedlegg med forklaring',
2323
[TemplateSections.SVAR_FRA_ROL]: 'Svar fra ROL',
2424
[TemplateSections.TILSVARSBREV_TITLE]: 'Tilsvarsbrevtittel',

‎frontend/src/plate/template-sections.ts

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Why animals?
3-
3+
44
Short, non-sortable.
55
No need for UUIDs.
66
Many to choose from.
@@ -13,7 +13,6 @@
1313
*/
1414
export enum TemplateSections {
1515
TITLE = 'section-esel',
16-
INTRODUCTION_V1 = 'section-rev',
1716
INTRODUCTION_V2 = 'section-rev-v2',
1817
ANKEINFO = 'section-ape',
1918
ANFOERSLER = 'section-ulv',
@@ -24,8 +23,6 @@ export enum TemplateSections {
2423
REGELVERK_TITLE = 'section-gnu',
2524
SAKSKOSTNADER = 'section-gris',
2625
FREMLEGG = 'section-geit',
27-
TILSVARSRETT_V1 = 'section-hund',
28-
TILSVARSRETT_V2 = 'section-hund-v2',
2926
TILSVARSRETT_V3 = 'section-hund-v3',
3027
VEDLEGG = 'section-katt',
3128
SVAR_FRA_ROL = 'section-emu',
@@ -38,3 +35,14 @@ export enum TemplateSections {
3835

3936
INTRODUCTION_TEMP = 'section-rev-temp', // For "migrating" ROL questions
4037
}
38+
39+
/**
40+
* Template sections that should not be used in new documents.
41+
* They only exist for filtering existing sections and texts.
42+
*/
43+
export enum DeprecatedTemplateSections {
44+
INTRODUCTION_V1 = 'section-rev',
45+
46+
TILSVARSRETT_V1 = 'section-hund',
47+
TILSVARSRETT_V2 = 'section-hund-v2',
48+
}

‎frontend/src/plate/templates/ankevedtak.ts

+1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ export const ANKEVEDTAK_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate>({
5656
tittel: 'Vedtak/beslutning (anke)',
5757
richText: INITIAL_SLATE_VALUE,
5858
dokumentTypeId: DistribusjonsType.VEDTAKSBREV,
59+
deprecatedSections: [],
5960
});

‎frontend/src/plate/templates/behandling-etter-tr-opphevet-vedtak.ts

+1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ export const BEHANDLING_ETTER_TR_OPPHEVET_TEMPLATE = deepFreeze<IMutableSmartEdi
5656
tittel: 'Vedtak/beslutning (ny behandling)',
5757
richText: INITIAL_SLATE_VALUE,
5858
dokumentTypeId: DistribusjonsType.VEDTAKSBREV,
59+
deprecatedSections: [],
5960
});

‎frontend/src/plate/templates/forenklet-beslutning-om-ikke-å-omgjøre.ts

+1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ export const FORENKLET_BESLUTNING_OM_IKKE_Å_OMGJØRE_TEMPLATE = deepFreeze<IMut
5353
tittel: 'Forenklet beslutning om ikke å omgjøre',
5454
richText: INITIAL_SLATE_VALUE,
5555
dokumentTypeId: DistribusjonsType.BESLUTNING,
56+
deprecatedSections: [],
5657
});

‎frontend/src/plate/templates/klagevedtak.ts

+1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ export const KLAGEVEDTAK_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate>({
5656
tittel: 'Vedtak/beslutning (klage)',
5757
richText: INITIAL_SLATE_VALUE,
5858
dokumentTypeId: DistribusjonsType.VEDTAKSBREV,
59+
deprecatedSections: [],
5960
});

‎frontend/src/plate/templates/omgjøringskravvedtak.ts

+1
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,5 @@ export const OMGJØRINGSKRAVVEDTAK_TEMPLATE = deepFreeze<IMutableSmartEditorTemp
5757
tittel: 'Vedtak/beslutning (omgjøringskrav)',
5858
richText: INITIAL_SLATE_VALUE,
5959
dokumentTypeId: DistribusjonsType.VEDTAKSBREV,
60+
deprecatedSections: [],
6061
});

‎frontend/src/plate/templates/orientering-om-tilsvar-direkte-til-trygderetten.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { IMutableSmartEditorTemplate } from '@app/types/smart-editor/smart-
55
import { TemplateIdEnum } from '@app/types/smart-editor/template-enums';
66
import type { Value } from '@udecode/plate';
77
import { BaseParagraphPlugin } from '@udecode/plate-core';
8-
import { TemplateSections } from '../template-sections';
8+
import { DeprecatedTemplateSections, TemplateSections } from '../template-sections';
99
import { LabelContentSource } from '../types';
1010
import {
1111
createCurrentDate,
@@ -36,7 +36,7 @@ const INITIAL_SLATE_VALUE: Value = [
3636
],
3737
},
3838

39-
createMaltekstseksjon(TemplateSections.TILSVARSRETT_V2),
39+
createMaltekstseksjon(TemplateSections.TILSVARSRETT_V3),
4040

4141
createSignature(),
4242
createFooter(),
@@ -47,4 +47,5 @@ export const ORIENTERING_OM_TILSVAR_TEMPLATE = deepFreeze<IMutableSmartEditorTem
4747
tittel: 'Orientering om tilsvar direkte til Trygderetten',
4848
richText: INITIAL_SLATE_VALUE,
4949
dokumentTypeId: DistribusjonsType.BREV,
50+
deprecatedSections: [DeprecatedTemplateSections.TILSVARSRETT_V2],
5051
});

‎frontend/src/plate/templates/oversendelsesbrev.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { SaksTypeEnum } from '@app/types/kodeverk';
1616
import type { IMutableSmartEditorTemplate } from '@app/types/smart-editor/smart-editor';
1717
import { TemplateIdEnum } from '@app/types/smart-editor/template-enums';
1818
import { BaseParagraphPlugin } from '@udecode/plate-core';
19-
import { TemplateSections } from '../template-sections';
19+
import { DeprecatedTemplateSections, TemplateSections } from '../template-sections';
2020
import { LabelContentSource } from '../types';
2121

2222
export const OVERSENDELSESBREV_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate>({
@@ -42,7 +42,7 @@ export const OVERSENDELSESBREV_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate
4242
],
4343
},
4444

45-
createMaltekstseksjon(TemplateSections.TILSVARSRETT_V2),
45+
createMaltekstseksjon(TemplateSections.TILSVARSRETT_V3),
4646
createMaltekstseksjon(TemplateSections.GENERELL_INFO),
4747

4848
createSignature(),
@@ -73,4 +73,5 @@ export const OVERSENDELSESBREV_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate
7373
createRegelverk(),
7474
],
7575
dokumentTypeId: DistribusjonsType.BREV,
76+
deprecatedSections: [DeprecatedTemplateSections.TILSVARSRETT_V2],
7677
});

‎frontend/src/plate/templates/simple-templates.ts

+5
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export const getGenereltBrevTemplate = (
4646
createFooter(),
4747
],
4848
dokumentTypeId: DistribusjonsType.BREV,
49+
deprecatedSections: [],
4950
});
5051

5152
export const GENERELT_BREV_TEMPLATE = getGenereltBrevTemplate(true);
@@ -75,6 +76,7 @@ export const getNotatTemplate = (
7576
createSignature(includeMedunderskriver, overriddenSaksbehandler),
7677
],
7778
dokumentTypeId: DistribusjonsType.NOTAT,
79+
deprecatedSections: [],
7880
});
7981

8082
export const NOTAT_TEMPLATE = getNotatTemplate(true);
@@ -100,6 +102,7 @@ export const ROL_QUESTIONS_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate>({
100102
createSignature(),
101103
],
102104
dokumentTypeId: DistribusjonsType.NOTAT,
105+
deprecatedSections: [],
103106
});
104107

105108
export const ROL_ANSWERS_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate>({
@@ -112,6 +115,7 @@ export const ROL_ANSWERS_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate>({
112115
createSignature(),
113116
],
114117
dokumentTypeId: DistribusjonsType.NOTAT,
118+
deprecatedSections: [],
115119
});
116120

117121
export const ROL_TILSVARSBREV_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate>({
@@ -138,4 +142,5 @@ export const ROL_TILSVARSBREV_TEMPLATE = deepFreeze<IMutableSmartEditorTemplate>
138142
createMaltekstseksjon(TemplateSections.VEDLEGG),
139143
],
140144
dokumentTypeId: DistribusjonsType.BREV,
145+
deprecatedSections: [],
141146
});

‎frontend/src/plate/templates/svar-på-innsynsbegjæring.ts

+1
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,5 @@ export const SVAR_PÅ_INNSYNSBEGJÆRING_TEMPLATE = deepFreeze<IMutableSmartEdito
4848
tittel: 'Svar på innsynsbegjæring',
4949
richText: INITIAL_SLATE_VALUE,
5050
dokumentTypeId: DistribusjonsType.BREV,
51+
deprecatedSections: [],
5152
});

‎frontend/src/plate/templates/varsel-om-omgjøring-til-ugunst.ts

+1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ export const VARSEL_OM_OMGJØRING_TIL_UGUNST_TEMPLATE = deepFreeze<IMutableSmart
5353
tittel: 'Varsel om omgjøring til ugunst',
5454
richText: INITIAL_SLATE_VALUE,
5555
dokumentTypeId: DistribusjonsType.BREV,
56+
deprecatedSections: [],
5657
});
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
import type { DeprecatedTemplateSections } from '@app/plate/template-sections';
12
import type { DistribusjonsType } from '../documents/documents';
23
import type { TemplateIdEnum } from './template-enums';
34

45
export interface INewSmartEditorMetadata {
56
templateId: TemplateIdEnum;
67
tittel: string;
78
dokumentTypeId: DistribusjonsType;
9+
deprecatedSections: DeprecatedTemplateSections[];
810
}

0 commit comments

Comments
 (0)
Please sign in to comment.