From 2d4424c28ac35763ef44c42ae2f01664d42b268c Mon Sep 17 00:00:00 2001 From: Herbert Eiselt Date: Tue, 12 Mar 2019 18:00:21 +0100 Subject: Security provider for UX-Client-Login Use ODL provided oauth2/token for UX clients Change-Id: I9f9ae931fc5e74dc13076bd23551d163c0685606 Issue-ID: SDNC-648 Signed-off-by: Herbert Eiselt --- sdnr/wt/odlux/framework/src/actions/authentication.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sdnr/wt/odlux/framework/src/actions/authentication.ts') diff --git a/sdnr/wt/odlux/framework/src/actions/authentication.ts b/sdnr/wt/odlux/framework/src/actions/authentication.ts index 8cbc22271..0cca179db 100644 --- a/sdnr/wt/odlux/framework/src/actions/authentication.ts +++ b/sdnr/wt/odlux/framework/src/actions/authentication.ts @@ -1,8 +1,9 @@ import { Action } from '../flux/action'; +import { AuthToken } from '../models/authentication'; export class UpdateAuthentication extends Action { - constructor(public bearerToken: string | null) { + constructor (public bearerToken: AuthToken | null) { super(); } } \ No newline at end of file -- cgit 1.2.3-korg