From c6ae07ccf70c76021270829974b3b7ca7e7fd8f7 Mon Sep 17 00:00:00 2001 From: Preston Baxter Date: Tue, 21 Nov 2023 19:45:12 -0600 Subject: [PATCH] B: NEVER FORGET RFC TAG --- service/vendors/pco/webhooks/subscription.go | 8 ++++---- versions.json | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/service/vendors/pco/webhooks/subscription.go b/service/vendors/pco/webhooks/subscription.go index 0d10d21..d452f0e 100644 --- a/service/vendors/pco/webhooks/subscription.go +++ b/service/vendors/pco/webhooks/subscription.go @@ -8,8 +8,8 @@ type Subscription struct { Active bool `jsonapi:"attr,active,omitempty" bson:"active"` ApplicationId string `jsonapi:"attr,application_id,omitempty" bson:"application_id"` AuthenticitySecret string `jsonapi:"attr,authenticity_secret,omitempty" bson:"authenticity_secret"` - CreatedAt time.Time `jsonapi:"attr,created_at,omitempty" bson:"created_at"` - UpdatedAt time.Time `jsonapi:"attr,updated_at,omitempty" bson:"updated_at"` + CreatedAt time.Time `jsonapi:"attr,created_at,rfc3339,omitempty" bson:"created_at"` + UpdatedAt time.Time `jsonapi:"attr,updated_at,rfc3339,omitempty" bson:"updated_at"` Name string `jsonapi:"attr,name,omitempty" bson:"name"` Url string `jsonapi:"attr,url,omitempty" bson:"url"` } @@ -20,8 +20,8 @@ type WebhookSubscription struct { Active bool `jsonapi:"attr,active,omitempty" bson:"active"` ApplicationId string `jsonapi:"attr,application_id,omitempty" bson:"application_id"` AuthenticitySecret string `jsonapi:"attr,authenticity_secret,omitempty" bson:"authenticity_secret"` - CreatedAt time.Time `jsonapi:"attr,created_at,omitempty" bson:"created_at"` - UpdatedAt time.Time `jsonapi:"attr,updated_at,omitempty" bson:"updated_at"` + CreatedAt time.Time `jsonapi:"attr,created_at,rfc3339,omitempty" bson:"created_at"` + UpdatedAt time.Time `jsonapi:"attr,updated_at,rfc3339,omitempty" bson:"updated_at"` Name string `jsonapi:"attr,name,omitempty" bson:"name"` Url string `jsonapi:"attr,url,omitempty" bson:"url"` } diff --git a/versions.json b/versions.json index 966e786..f195cd1 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,4 @@ { - "webhook_version": "0.0.23", - "frontend_version": "0.0.23" + "webhook_version": "0.0.24", + "frontend_version": "0.0.24" }