3
0

Implement namespace CRUD + various small fixes

Other fixes and improvements:
 - add parseISODateWithErr and parseISODatePtrWithErr handlers for incoming data
 - add service & repository errors
 - cleanup old (unbound) attachment controllers from router
 - fix system repository error prefix (auth => system)
This commit is contained in:
Denis Arh
2019-04-28 08:56:44 +02:00
parent 010a1351ea
commit 5bfbab6a4e
24 changed files with 2222 additions and 59 deletions

View File

@@ -101,6 +101,8 @@ $parsers = array(
"int" => "parseInt",
"uint" => "parseUint",
"bool" => "parseBool",
"time.Time" => "parseISODateWithErr",
"*time.Time" => "parseISODatePtrWithErr",
"sqlxTypes.JSONText" => "parseJSONTextWithErr",
);