6 lines
99 B
Ruby
6 lines
99 B
Ruby
class GroupsController < ApplicationController
|
|
def index
|
|
render jsonapi: Group.all
|
|
end
|
|
end
|