Mark Schmid
Mark Schmid
In that regard: We also need to be able to access a session cookie we receive from the server upon login/first connection. Any ideas on how/where we can access that...
We would like that specific users of a tenant (e.g. with an administrative role) can manage all the users within that (and only that) tenant. They would manage their users...
Thanks for the explanation. Makes sense.
I've tried checking for ```ErrNoSuchHandle``` but it's not working, possibly because in line 588 not an error, but a string is sent to w.Errors Also, when removing a directory, my...
That's great, thanks! In regards to the second issue, I'm watching a single directory and am interested in 3 events: file created, directory created, directory removed. All events are working...
I've found that using the following, it seems to work: ``` client := fusionauth.NewClient(httpClient, baseURL, "") // using "" as API Key client.setTenantId = "" response, errs, err := client.ResendEmailVerification(email)...
Thanks. Since the verification call succeeds, I’m just confused about the EOF err. All other client methods i’ve used so far are not returning an err when they succeed. For...
OK did some more searching. It's probably easiest to do it "externally" using something like https://github.com/kikito/i18n.lua
I'm trying to make use https://github.com/kikito/i18n.lua from lua-resty-template. Here's what I'd like to achieve: ``` local template = require("resty.template") local i18n = require("resty.i18n") --[ load strings, set language etc. in...
Addition: I think on a more general level it boils down to the question of how I can make use of an external library from within a ```lua-resty-template``` template.