wedding-planner/app/controllers/groups_controller.rb

8 lines
162 B
Ruby
Raw Permalink Normal View History

2024-10-27 21:42:45 +00:00
# Copyright (C) 2024 Manuel Bustillo
2024-08-11 16:29:10 +02:00
class GroupsController < ApplicationController
def index
render json: Groups::SummaryQuery.new.call.as_json
2024-08-11 16:29:10 +02:00
end
end