implemented storage of new wiki page version, prepared page display for several versions

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-09-10 14:47:08 +02:00
parent c63def1b85
commit e831b8a4e0
5 changed files with 32 additions and 6 deletions

View File

@@ -26,6 +26,10 @@ public class WikiPage implements Mappable {
this.content = content;
}
public String content(){
return content;
}
public String id(){
return id;
}
@@ -74,6 +78,10 @@ public class WikiPage implements Mappable {
);
}
public int version(){
return version;
}
public List<Integer> versions(){
return versions;
}