Skip to content
Snippets Groups Projects
Commit 0c818fe1 authored by buczekp's avatar buczekp
Browse files

[LMS-1221] fixed empty roles problem

SVN: 12923
parent 38de6900
No related merge requests found
...@@ -112,7 +112,7 @@ public interface ICommonServer extends IServer ...@@ -112,7 +112,7 @@ public interface ICommonServer extends IServer
{ {
/** Keeps the session with specified token alive. */ /** Keeps the session with specified token alive. */
@Transactional(readOnly = true) @Transactional(readOnly = true)
@RolesAllowed @RolesAllowed(RoleSet.OBSERVER)
public void keepSessionAlive(String sessionToken); public void keepSessionAlive(String sessionToken);
/** /**
......
...@@ -112,7 +112,7 @@ public interface ICommonServer extends IServer ...@@ -112,7 +112,7 @@ public interface ICommonServer extends IServer
{ {
/** Keeps the session with specified token alive. */ /** Keeps the session with specified token alive. */
@Transactional(readOnly = true) @Transactional(readOnly = true)
@RolesAllowed @RolesAllowed(RoleSet.OBSERVER)
public void keepSessionAlive(String sessionToken); public void keepSessionAlive(String sessionToken);
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment