Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
ARSnova Backend
Commits
c39b19f6
There was a problem fetching the pipeline stages.
Commit
c39b19f6
authored
8 years ago
by
Daniel Gerhardt
Browse files
Options
Downloads
Patches
Plain Diff
Add `slides` attribute to session features
parent
07d55522
1 merge request
!24
Freetext Checker improvements
Pipeline
#2119
passed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/thm/arsnova/entities/SessionFeature.java
+10
-0
10 additions, 0 deletions
src/main/java/de/thm/arsnova/entities/SessionFeature.java
with
10 additions
and
0 deletions
src/main/java/de/thm/arsnova/entities/SessionFeature.java
+
10
−
0
View file @
c39b19f6
...
@@ -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
;
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment