Posts by Elton Sandré • 111 points
2 posts
-
1
votes2
answers4154
viewsA: how to create a currency mask with regex
Use the dependency of ng2-currency-Mask: add dependency to your project: npm i ng2-currency-mask --save Import the component into your model: import { CurrencyMaskModule } from 'ng2-currency-mask';…
-
-1
votes1
answer234
viewsA: Rules processing with spring security
Try adding the ROLE prefix_ sec:authorize="hasRole('ROLE_ADMINISTRADOR')" Returns true if the current principal has the function specified. By default, if the given function does not start…