Handle unbound members when binding request

This commit is contained in:
eikendev 2020-08-03 15:37:16 +02:00
parent 9a65fb4356
commit 76c2fe9c22
No known key found for this signature in database
GPG key ID: A1BDB1B28C8EF694
4 changed files with 51 additions and 25 deletions

View file

@ -16,5 +16,5 @@ type CreateApplication struct {
// UpdateApplication is used to process queries for updating applications.
type UpdateApplication struct {
Name string `json:"name"`
Name *string `json:"name"`
}