drev74

Results 20 comments of drev74

@ripienaar :eyes:

Guten tag @vinckr WIP in PR stands for Work-in-Progress :eyes: . I've not yet finished. Now updating a client. I'll remove the WIP and ping you when I'm ready Vielen...

@vinckr has smth changed recently? I can't instantiate an Ory Agent with: `const ory = new V0alpha2Api(...)` `error - V0alpha2Api is not found` Switched to ory/client v1.0.1

@vinckr Could you pls help me a bit :eyes: . I'm trying to implement a login-logout for a `Vite Client` [here](https://github.com/drev74/examples/blob/d9c73b2df28882e2aae4e13907d0071020cccbdc/kratos-keto-oathkeeper-supabase/viteclient/src/App.vue#L63). I added an allowed return URL for kratos [here](https://github.com/drev74/examples/blob/d9c73b2df28882e2aae4e13907d0071020cccbdc/kratos-keto-oathkeeper-supabase/kratos/kratos.yml#L25)...

UPD: I was able to work around this by implementing a partial route registration with Iris: ```go // *** Foo API fooAPI := app.Party("/v1/foo") fooAPI.Post("/", fooRest.Create) // *** Bar API...

Please add oauth2 config `Allowed JavaScript Origins` and `Allowed Redirect URIs` to the plane helm chart :pray:

`active` becomes true after email confirmation. If I block a user, how do you distinguish between a `blocked` and `unconfirmed` accounts ?

@cm-sentinel @alnr > It sounds like this would require `active` to refactor from a `bool` to an enum of states. Correct? Nah ! `active` is a **registration** logic, but `locked`...

This config is invalid, since the `jwkurls` must pointer to the actual `json`. Below is a valid example, that works for me: ```sh Dgraph.Authorization {"header":"X-Dgraph-AuthToken","namespace":"https://dgraph.io/jwt/claims","jwkurl":"https://my-provider.com/.well-known/jwks.json","audience":["mycorp","dgraph"],"closedbydefault":true} ``` ```