Skip to content

Commit

Permalink
bugfixing: search did't work for GUEST-User
Browse files Browse the repository at this point in the history
  • Loading branch information
rbreuss-github committed May 12, 2020
1 parent 6153201 commit fa9ab20
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
*****************************************************************************/
package at.freebim.db.service;

import org.springframework.security.access.annotation.Secured;

import at.freebim.db.domain.SearchStringNode;

/**
Expand All @@ -33,13 +35,15 @@ public interface SearchStringNodeService extends BaseNodeService<SearchStringNod
*
* @see at.freebim.db.service.BaseService#save(java.lang.Object)
*/
@Secured({ "ROLE_EDIT", "ROLE_ADMIN", "ROLE_GUEST" })
SearchStringNode save(SearchStringNode node);

/*
* (non-Javadoc)
*
* @see at.freebim.db.service.BaseService#delete(java.lang.Object)
*/
@Secured({ "ROLE_EDIT", "ROLE_ADMIN", "ROLE_GUEST" })
SearchStringNode delete(SearchStringNode node);

}

0 comments on commit fa9ab20

Please sign in to comment.