Skip to content
Snippets Groups Projects
Commit c39b19f6 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Add `slides` attribute to session features

parent 07d55522
1 merge request!24Freetext Checker improvements
Pipeline #2119 passed with stages
...@@ -44,6 +44,7 @@ public class SessionFeature implements Serializable { ...@@ -44,6 +44,7 @@ public class SessionFeature implements Serializable {
private boolean interposed = true; private boolean interposed = true;
private boolean pi = true; private boolean pi = true;
private boolean learningProgress = true; private boolean learningProgress = true;
private boolean slides = false;
public SessionFeature(SessionFeature features) { public SessionFeature(SessionFeature features) {
this(); this();
...@@ -63,6 +64,7 @@ public class SessionFeature implements Serializable { ...@@ -63,6 +64,7 @@ public class SessionFeature implements Serializable {
this.interposed = features.interposed; this.interposed = features.interposed;
this.pi = features.pi; this.pi = features.pi;
this.learningProgress = features.learningProgress; this.learningProgress = features.learningProgress;
this.slides = features.slides;
} }
} }
...@@ -193,4 +195,12 @@ public class SessionFeature implements Serializable { ...@@ -193,4 +195,12 @@ public class SessionFeature implements Serializable {
this.twitterWall = twitterWall; this.twitterWall = twitterWall;
} }
public boolean isSlides() {
return slides;
}
public void setSlides(boolean slides) {
this.slides = slides;
}
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment