mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-27 14:22:47 +00:00
tutorial hasRole->hasAuthority
Closes gh-8796
This commit is contained in:
parent
09fe6071e1
commit
9c33a862d4
@ -23,7 +23,7 @@ public interface BankService {
|
||||
|
||||
Account[] findAccounts();
|
||||
|
||||
@PreAuthorize("hasRole('supervisor') or "
|
||||
+ "hasRole('teller') and (#account.balance + #amount >= -#account.overdraft)")
|
||||
@PreAuthorize("hasAuthority('supervisor') or "
|
||||
+ "hasAuthority('teller') and (#account.balance + #amount >= -#account.overdraft)")
|
||||
Account post(Account account, double amount);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user