1.6.0
A minor update release.
Breaking Changes:
@Roles
decorator parameters changed, now requires you to pass a parameter object, a quick snippet (#45, thanks @jalorenz):
// Client application roles
@Roles({ roles: ['admin', 'other'], mode: RoleMatchingMode.ALL })
// Realm roles, simply prefix it with realm:
@Roles({ roles: ['realm:admin', 'realm:other'], mode: RoleMatchingMode.ALL })
@Roles
decorator now defaults to match ANY roles given- Remove
@AllowAnyRole
decorator
Changes: