Skip to content

Commit 99d8a14

Browse files
committed
Oops
1 parent 2abfb31 commit 99d8a14

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

Controllers/CartController.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public async Task<ActionResult> Manage([FromForm] CartManageModel model)
6868
var dbCart = new Cart
6969
{
7070
Id = cartId,
71+
EquipmentType = EquipmentType.AvCart,
7172
Configuration = new Cart.AvCartConfiguration
7273
{
7374
AuthToken = Guid.NewGuid().ToString(),

Models/Cart.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ namespace fim_queueing_admin.Models;
88
public class Cart : BaseEquipment
99
{
1010
public AvCartConfiguration? Configuration { get; set; } = new();
11-
public int EquipmentTypeId { get; set; } = 1;
1211

1312
// TODO: This is not yet implemented in Postgres
1413
// public ICollection<AlertCart>? AlertCarts { get; set; }

0 commit comments

Comments
 (0)