gab-social/app/services/group_query_service.rb

9 lines
153 B
Ruby
Raw Normal View History

2019-07-02 03:10:25 -04:00
# frozen_string_literal: true
class GroupQueryService < BaseService
def call(group)
Status.distinct
.as_group_timeline(group)
end
end