Compat with Keycloak 16 (and probably 17, 18) #79

This commit is contained in:
garronej
2022-01-20 01:34:26 +01:00
parent 40237374a8
commit fb0be3272c
4 changed files with 24 additions and 8 deletions

View File

@ -0,0 +1,3 @@
export function pathBasename(path: string) {
return path.split("/").reverse()[0];
}