mvertopoulos / vue-msal

Vue plugin for using Microsoft Authentication Library (MSAL)
MIT License
123 stars 66 forks source link

postLogoutRedirectUri not wired up by vue-msal #2

Closed Agendum closed 4 years ago

Agendum commented 4 years ago

vue-msal documentation indicates it supports 'postLogoutRedirectUri'. Unfortunately, vue-msal has not wired it up like it has other auth properties. I have been able to easily work-around this by simply:

beforeSignOut: function(ctx){
    ctx.lib.config.auth.postLogoutRedirectUri = ctx.auth.postLogoutRedirectUri;
}
mvertopoulos commented 4 years ago

Thanks for pointing this out. I am updating the plugin as necessary.