wedding-planner/app/controllers/groups_controller.rb

6 lines
99 B
Ruby
Raw Normal View History

2024-08-11 16:29:10 +02:00
class GroupsController < ApplicationController
def index
render jsonapi: Group.all
end
end