Remove unused code

This commit is contained in:
koalasat
2025-03-10 10:13:32 +01:00
parent 26802f114a
commit 1998dae3a4
2 changed files with 0 additions and 5 deletions

View File

@ -338,7 +338,6 @@ paths:
- `total_secs_exp` - `total_secs_exp`
- `penalty` - `penalty`
- `is_maker` - `is_maker`
- `is_pretaker`
- `is_taker` - `is_taker`
- `is_participant` - `is_participant`
- `maker_status` - `maker_status`
@ -1387,9 +1386,6 @@ components:
is_maker: is_maker:
type: boolean type: boolean
description: Whether you are the maker or not description: Whether you are the maker or not
is_pretaker:
type: boolean
description: Whether you are a pre-taker or not
is_taker: is_taker:
type: boolean type: boolean
description: Whether you are the taker or not description: Whether you are the taker or not

View File

@ -75,7 +75,6 @@ class Order {
penalty: Date | undefined = undefined; penalty: Date | undefined = undefined;
is_maker: boolean = false; is_maker: boolean = false;
is_taker: boolean = false; is_taker: boolean = false;
is_pretaker: boolean = false;
is_participant: boolean = false; is_participant: boolean = false;
maker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active'; maker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active';
taker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active'; taker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active';