Added the possibility to include inactive keywords in the search.
This commit is contained in:
parent
8bb0d7181a
commit
862444c906
@ -52,6 +52,16 @@ public interface ProjectIdeaDao extends Dao<ProjectIdea> {
|
||||
|
||||
private Collection<Keyword> keywords;
|
||||
|
||||
private boolean includeDeleted = false;
|
||||
|
||||
public boolean isIncludeDeleted() {
|
||||
return includeDeleted;
|
||||
}
|
||||
|
||||
public void setIncludeDeleted(boolean includeDeleted) {
|
||||
this.includeDeleted = includeDeleted;
|
||||
}
|
||||
|
||||
public Collection<Keyword> getKeywords() {
|
||||
return keywords;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user