gab-social/app/services/group_query_service.rb

8 lines
133 B
Ruby
Raw Normal View History

2019-07-02 08:10:25 +01:00
# frozen_string_literal: true
class GroupQueryService < BaseService
def call(group)
2019-07-15 14:47:05 +01:00
Status.as_group_timeline(group)
2019-07-02 08:10:25 +01:00
end
end