B: NEVER FORGET RFC TAG

This commit is contained in:
Preston Baxter 2023-11-21 19:45:12 -06:00
parent 374826b577
commit c6ae07ccf7
2 changed files with 6 additions and 6 deletions

View File

@ -8,8 +8,8 @@ type Subscription struct {
Active bool `jsonapi:"attr,active,omitempty" bson:"active"` Active bool `jsonapi:"attr,active,omitempty" bson:"active"`
ApplicationId string `jsonapi:"attr,application_id,omitempty" bson:"application_id"` ApplicationId string `jsonapi:"attr,application_id,omitempty" bson:"application_id"`
AuthenticitySecret string `jsonapi:"attr,authenticity_secret,omitempty" bson:"authenticity_secret"` AuthenticitySecret string `jsonapi:"attr,authenticity_secret,omitempty" bson:"authenticity_secret"`
CreatedAt time.Time `jsonapi:"attr,created_at,omitempty" bson:"created_at"` CreatedAt time.Time `jsonapi:"attr,created_at,rfc3339,omitempty" bson:"created_at"`
UpdatedAt time.Time `jsonapi:"attr,updated_at,omitempty" bson:"updated_at"` UpdatedAt time.Time `jsonapi:"attr,updated_at,rfc3339,omitempty" bson:"updated_at"`
Name string `jsonapi:"attr,name,omitempty" bson:"name"` Name string `jsonapi:"attr,name,omitempty" bson:"name"`
Url string `jsonapi:"attr,url,omitempty" bson:"url"` Url string `jsonapi:"attr,url,omitempty" bson:"url"`
} }
@ -20,8 +20,8 @@ type WebhookSubscription struct {
Active bool `jsonapi:"attr,active,omitempty" bson:"active"` Active bool `jsonapi:"attr,active,omitempty" bson:"active"`
ApplicationId string `jsonapi:"attr,application_id,omitempty" bson:"application_id"` ApplicationId string `jsonapi:"attr,application_id,omitempty" bson:"application_id"`
AuthenticitySecret string `jsonapi:"attr,authenticity_secret,omitempty" bson:"authenticity_secret"` AuthenticitySecret string `jsonapi:"attr,authenticity_secret,omitempty" bson:"authenticity_secret"`
CreatedAt time.Time `jsonapi:"attr,created_at,omitempty" bson:"created_at"` CreatedAt time.Time `jsonapi:"attr,created_at,rfc3339,omitempty" bson:"created_at"`
UpdatedAt time.Time `jsonapi:"attr,updated_at,omitempty" bson:"updated_at"` UpdatedAt time.Time `jsonapi:"attr,updated_at,rfc3339,omitempty" bson:"updated_at"`
Name string `jsonapi:"attr,name,omitempty" bson:"name"` Name string `jsonapi:"attr,name,omitempty" bson:"name"`
Url string `jsonapi:"attr,url,omitempty" bson:"url"` Url string `jsonapi:"attr,url,omitempty" bson:"url"`
} }

View File

@ -1,4 +1,4 @@
{ {
"webhook_version": "0.0.23", "webhook_version": "0.0.24",
"frontend_version": "0.0.23" "frontend_version": "0.0.24"
} }