Gerasimos (Makis) Maropoulos

Results 259 comments of Gerasimos (Makis) Maropoulos

Hello @spolischook, how are you? You can customize how directories are loaded to view engine by: `iris.Patches().Context().ResolveFS` method. Currently we support: `string`, `fs.FS`, `http.FileSystem` and `embed.FS` (code [here](https://github.com/kataras/iris/blob/211834a0d7c12f765cc8dc2774556bff2bc35a18/context/fs.go#L19)). The `fs.FS`...

I have one more proposal, **support aliases in the section names**. The current `NameMapper` can only return a single name for keys (and not for sections, see `SectionsByName`). I think...

Hello @unknwon That's awesome, I didn't even notice that in the code. OK, one problem solved. We have two more issues to solve and we are ready to go: -...

@racevedoo When https://github.com/Landoop/schema-registry/pull/12 will be merged, open your terminal and execute `go get -u github.com/landoop/schema-registry/schema-registry-cli` to update the package, you now have two helpers for the error type check: ```go...

Hello @joonas-fi, The majority of the libraries, including this one (as it's described on the official jwt site), do not support aud check by-default, you can see by yourself by...

Hello @joonas-fi, This library doesn't perform any "aud" check, as it's already described on the jwt.io website. But I would love to do it so if that is critical for...

Hello @joonas-fi, BytesToString and Base64Encode are mostly helpers for users of this package. BytesToString is used just on a single return statement, inside the blockfile.go file, of course we can...

There is no example on refresh tokens in this repository because there are different strategies for that. If you see the README's References section's link you can follow some articles...

@daheige If you still need a native `net/http` example, just comment below and i will prepare you an `http.Server, http.Client` and a javascript client examples :) Keep note that the...