Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
obviously the enums should be strings
this got overlooked from the orginal jsonpb behavior since submitter was trying to maintain behavior, but strings is way better before ``` $ curl -X POST localhost:5050/rack -d { "env": "prod" } {"env":1"} ``` now ``` $ curl -X POST localhost:5050/rack -d { "env": "prod" } {"env":"prod"} ```
- Loading branch information