1
0

Remove unused get_room_stats_state method. (#6869)

* commit 'e1d858984':
  Remove unused `get_room_stats_state` method. (#6869)
This commit is contained in:
Andrew Morgan
2020-03-23 17:10:59 +00:00
2 changed files with 1 additions and 25 deletions

1
changelog.d/6869.misc Normal file
View File

@@ -0,0 +1 @@
Remove unused `get_room_stats_state` method.

View File

@@ -271,31 +271,6 @@ class StatsStore(StateDeltasStore):
return slice_list
def get_room_stats_state(self, room_id):
"""
Returns the current room_stats_state for a room.
Args:
room_id (str): The ID of the room to return state for.
Returns (dict):
Dictionary containing these keys:
"name", "topic", "canonical_alias", "avatar", "join_rules",
"history_visibility"
"""
return self.db.simple_select_one(
"room_stats_state",
{"room_id": room_id},
retcols=(
"name",
"topic",
"canonical_alias",
"avatar",
"join_rules",
"history_visibility",
),
)
@cached()
def get_earliest_token_for_stats(self, stats_type, id):
"""