Browse Source

Add missing REST API page values/properties

Signed-off-by: Pekka Helenius <fincer89@hotmail.com>
v0.0.3-alpha
Pekka Helenius 4 years ago
parent
commit
94762c5a54
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      bookstore/src/main/java/com/fjordtek/bookstore/service/session/BookStorePages.java

+ 8
- 1
bookstore/src/main/java/com/fjordtek/bookstore/service/session/BookStorePages.java View File

@ -45,7 +45,10 @@ public class BookStorePages {
REST,
RESTAUTHORS,
RESTBOOKS,
RESTCATEGORIES
RESTCATEGORIES,
RESTUSERS,
RESTROLES,
RESTUSERROLES
;
@PostConstruct
@ -74,6 +77,10 @@ public class BookStorePages {
this.RESTAUTHORS = env.getProperty("page.url.restapi.authors");
this.RESTBOOKS = env.getProperty("page.url.restapi.books");
this.RESTCATEGORIES = env.getProperty("page.url.restapi.categories");
this.RESTUSERS = env.getProperty("page.url.restapi.users");
this.RESTROLES = env.getProperty("page.url.restapi.roles");
this.RESTUSERROLES = env.getProperty("page.url.restapi.userroles");
}
}


Loading…
Cancel
Save