Skip to content

Commit 4698ec8

Browse files
committed
remove maus_version from code base
1 parent e835315 commit 4698ec8

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

openapi.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,17 +187,12 @@ components:
187187
direction:
188188
type: string
189189
example: 'inbound'
190-
maus_version:
191-
type: string
192-
pattern: '^\\d+\\.\\d+\\.\\d+$'
193-
example: '0.3.1'
194190
pruefidentifikator:
195191
type: string
196192
example: '25007'
197193
required:
198194
- description
199195
- direction
200-
- maus_version
201196
- pruefidentifikator
202197
required:
203198
- lines

src/app/core/api/models/ahb.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export interface Ahb {
1818
meta: {
1919
'description': string;
2020
'direction': string;
21-
'maus_version': string;
2221
'pruefidentifikator': string;
2322
};
2423
}

src/app/features/ahbs/views/ahb-page/test-data.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export const testData$: Observable<Ahb> = of(null).pipe(
77
meta: {
88
description: 'asd',
99
direction: 'LTS to abc',
10-
maus_version: 'asdasd',
1110
pruefidentifikator: '123',
1211
},
1312
lines: [

src/server/repository/ahb.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ export default class AHBRepository {
6262
meta: {
6363
description: metaInfo.description || '',
6464
direction: metaInfo.direction || '',
65-
maus_version: '0.3.1', // TODO: Add this to the database schema
6665
pruefidentifikator: metaInfo.pruefidentifikator,
6766
},
6867
lines: lines.map(line => ({

0 commit comments

Comments
 (0)