Skip to content

Commit

Permalink
default other open id configs is url is specified w/ burnettk
Browse files Browse the repository at this point in the history
  • Loading branch information
jasquat committed Nov 9, 2023
1 parent 205c778 commit 2df4917
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ def config_from_env(variable_name: str, *, default: str | bool | int | None = No
url_config = config_from_env("SPIFFWORKFLOW_BACKEND_OPEN_ID_SERVER_URL")
if url_config is not None:
SPIFFWORKFLOW_BACKEND_OPEN_ID_SERVER_URL = url_config
config_from_env("SPIFFWORKFLOW_BACKEND_OPEN_ID_CLIENT_ID")
config_from_env("SPIFFWORKFLOW_BACKEND_OPEN_ID_CLIENT_SECRET_KEY")
config_from_env("SPIFFWORKFLOW_BACKEND_OPEN_ID_CLIENT_ID", default="spiffworkflow-backend")
config_from_env("SPIFFWORKFLOW_BACKEND_OPEN_ID_CLIENT_SECRET_KEY", default="JXeQExm0JhQPLumgHtIIqf52bDalHz0q")
else:
SPIFFWORKFLOW_BACKEND_AUTH_CONFIGS = [
{
Expand Down
3 changes: 2 additions & 1 deletion spiffworkflow-frontend/cypress/e2e/process_groups.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ describe('process-groups', () => {
cy.contains(`Process Group: ${groupDisplayName}`);

cy.getBySel('edit-process-group-button').click();
cy.get('input[name=display_name]').clear().type(newGroupDisplayName);
cy.get('input[name=display_name]').clear();
cy.get('input[name=display_name]').type(newGroupDisplayName);
cy.contains('Submit').click();
cy.contains(`Process Group: ${newGroupDisplayName}`);

Expand Down

0 comments on commit 2df4917

Please sign in to comment.