use of li.naska.bgg.resource.v3.model.ForumsParams in project bgg-api by tnaskali.
the class ForumsService method getFamilyForums.
public Mono<List<Forum>> getFamilyForums(Integer id) {
ForumsParams parameters = new ForumsParams();
parameters.setId(id);
parameters.setType(ItemType.family);
return getForums(parameters);
}
use of li.naska.bgg.resource.v3.model.ForumsParams in project bgg-api by tnaskali.
the class ForumsService method getThingForums.
public Mono<List<Forum>> getThingForums(Integer id) {
ForumsParams parameters = new ForumsParams();
parameters.setId(id);
parameters.setType(ItemType.thing);
return getForums(parameters);
}
Aggregations