Skip to content

Commit

Permalink
Merge pull request #834 from matrix-org/kegan/joined-room-r0
Browse files Browse the repository at this point in the history
Use r0 instead of 'unstable' for joined_members|rooms
  • Loading branch information
kegsay authored Mar 18, 2020
2 parents c0c8009 + 7fa4fca commit aaac4f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/10apidoc/31room-state.pl
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@

do_request_json_for( $user,
method => "GET",
uri => "/unstable/rooms/$room_id/joined_members",
uri => "/r0/rooms/$room_id/joined_members",
)->then( sub {
my ( $body ) = @_;

Expand Down Expand Up @@ -220,7 +220,7 @@

do_request_json_for( $user,
method => "GET",
uri => "/unstable/joined_rooms",
uri => "/r0/joined_rooms",
)->then( sub {
my ( $body ) = @_;

Expand Down
4 changes: 2 additions & 2 deletions tests/30rooms/40joinedapis.pl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
)->then( sub {
do_request_json_for( $user,
method => "GET",
uri => "/unstable/joined_rooms",
uri => "/r0/joined_rooms",
)
})->then( sub {
my ( $body ) = @_;
Expand Down Expand Up @@ -92,7 +92,7 @@

do_request_json_for( $user,
method => "GET",
uri => "/unstable/rooms/$room_id/joined_members",
uri => "/r0/rooms/$room_id/joined_members",
)->then( sub {
my ( $body ) = @_;

Expand Down

0 comments on commit aaac4f5

Please sign in to comment.