diff --git a/bookstore/src/main/resources/authentication.properties b/bookstore/src/main/resources/authentication.properties index 2bbc77e..c0af4e5 100644 --- a/bookstore/src/main/resources/authentication.properties +++ b/bookstore/src/main/resources/authentication.properties @@ -1,4 +1,21 @@ # Pekka Helenius , Fjordtek 2020 +# NOTE: +# These properties represent internal application properties, +# NOT linguistic front-end message strings. Never refer to keys +# in this file in your application front-end messages. +# These keys are accessible in Spring Environment context. + + + +# Login form authentication fields +# auth.field.username = b_username -auth.field.password = b_password \ No newline at end of file +auth.field.password = b_password + +# User roles (authorities) +# +auth.authority.admin = ADMIN +auth.authority.helpdesk = HELPDESK +auth.authority.sales = MARKETING +auth.authority.user = USER \ No newline at end of file