Skip to content

Commit 1ffa846

Browse files
authored
Merge pull request #682 from openziti/681-external-jwt-signer-callback
Fix broken callback redirect after External JWT Authentication
2 parents f81e49c + a97657b commit 1ffa846

File tree

6 files changed

+14
-4
lines changed

6 files changed

+14
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "io.netfoundry.zac",
3-
"version": "3.12.1",
3+
"version": "3.12.2",
44
"description": "Ziti Administration Console",
55
"main": "server.js",
66
"type": "module",

projects/ziti-console-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openziti/ziti-console-lib",
3-
"version": "0.12.2",
3+
"version": "0.12.3",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/openziti/ziti-console"

projects/ziti-console-lib/src/lib/pages/callback/callback.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ export class CallbackComponent implements OnInit {
4949
const prefix = '/edge/client/v1';
5050
const url = this.settingsService.settings.selectedEdgeController;
5151
let doNav = true;
52-
let isTest = true;
52+
let isTest = false;
5353
if (!isEmpty(redirectRoute)) {
54+
5455
doNav = false;
5556
isTest = true;
5657
}

projects/ziti-console-lib/src/lib/ziti-console-lib.module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,9 @@ export function playerFactory() {
301301
SessionFormComponent,
302302
APISessionsPageComponent,
303303
APISessionFormComponent,
304-
CallbackComponent
304+
CallbackComponent,
305+
FormHeaderComponent,
306+
JsonViewComponent
305307
],
306308
providers: [
307309
{provide: SHAREDZ_EXTENSION, useClass: ExtensionsNoopService},

projects/ziti-console-lib/src/public-api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export * from './lib/pages/posture-checks/posture-checks-page.service';
7676
export * from './lib/pages/terminators/terminators-page.component';
7777
export * from './lib/pages/terminators/terminators-page.service';
7878
export * from './lib/ziti-console.constants';
79+
export * from './lib/features/json-view/json-view.component';
7980
export * from './lib/features/side-modal/side-modal.component';
8081
export * from './lib/features/projectable-forms/identity/identity-form.component';
8182
export * from './lib/features/projectable-forms/identity/identity-form.service';

release-notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# app-ziti-console-v3.12.2
2+
# ziti-console-lib-v0.12.2
3+
## Bug Fixes
4+
* [Issue #681](https://github.com/openziti/ziti-console/pull/681) - External JWT Signer authentication does not redirect after callback/login attempt
5+
6+
17
# app-ziti-console-v3.12.1
28
# ziti-console-lib-v0.12.1
39
## Feature/Improvements

0 commit comments

Comments
 (0)