8 lines
162 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
class GroupsController < ApplicationController
def index
render json: Groups::SummaryQuery.new.call.as_json
end
end