use of org.apache.openmeetings.db.dto.room.Whiteboard in project openmeetings by apache.
the class WhiteboardManager method add.
public Whiteboard add(long roomId, Long langId) {
Whiteboards wbs = get(roomId);
Whiteboard wb = add(wbs, langId);
update(wbs);
return wb;
}
Aggregations