Zachary Chavez
Zachary Chavez
1. There is an `hours_til_expiration` column in the client table that defaults to 24 2. The `/api/invite` and `/api/resend-invite/{userId}` endpoints accept an `hours_til_expiration` param 3. If not provided in the...
When inviting a user, we check if the email already exists and if it does we do a reinvite. If it does not exist, we create a new user. The...
Set autologin=1 in the query string to have the user logged in after submitting registration. See https://github.com/synapsestudios/oidc-platform/blob/master/api/src/plugins/openid-connect/grants/password.js for how to retrieve a token given a username and password. It may...
In order to receive a refresh token after logging in, `prompt=consent` needs to be included in the login URL. We also need to make sure that the parameter gets passed...
The "Theming" section of the docs doesn't mention that you can create a template for the error screen.
e.g. ``` { title: "Log In - Site Name" } ```
The endpoint otherwise appears to work. Observed in 2.11.0
Should include the following information. In order to get a refresh_token from an `authorization_code` grant type: 1. scope must include `offline_access` 2. Your login URL needs to include `&prompt=consent` 3....