2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

No need for return in last statement of method

This commit is contained in:
Penar Musaraj 2019-11-14 14:32:22 -05:00
parent 59ee89f0b7
commit 6c16d5762c

View file

@ -88,7 +88,7 @@ class TopicListItemSerializer < ListableTopicSerializer
end
def allowed_user_count
return object.allowed_users.count
object.allowed_users.count
end
def include_allowed_user_count?