Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ <h1>
<p><b>Next Release</b> at some date</p>
<ul>
<li>[<a href='https://github.com/igniterealtime/openfire-restAPI-plugin/issues/127'>#127</a>] - AAdd endpoint that allows for more than one MUC room to be created with one request</li>
<li>[<a href='https://github.com/igniterealtime/openfire-restAPI-plugin/issues/15'>#15</a>] - Fix group-based affiliations with MUC rooms.</li>
</ul>

<p><b>1.8.3</b> July 19, 2022</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public List<String> getMembers() {
@XmlElementWrapper(name = "memberGroups")
@XmlElement(name = "memberGroup")
@JsonProperty(value = "memberGroups")
public List<String> getmemberGroups() {
public List<String> getMemberGroups() {
return memberGroups;
}

Expand All @@ -316,7 +316,7 @@ public List<String> getOutcasts() {
@XmlElementWrapper(name = "outcastGroups")
@XmlElement(name = "outcastGroup")
@JsonProperty(value = "outcastGroups")
public List<String> getoutcastGroups() {
public List<String> getOutcastGroups() {
return outcastGroups;
}

Expand All @@ -338,7 +338,7 @@ public List<String> getAdmins() {
@XmlElementWrapper(name = "adminGroups")
@XmlElement(name = "adminGroup")
@JsonProperty(value = "adminGroups")
public List<String> getadminGroups() {
public List<String> getAdminGroups() {
return adminGroups;
}

Expand Down