mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 06:28:57 +08:00
11 lines
267 B
Ruby
11 lines
267 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AssociatedGroupsController < ApplicationController
|
|
requires_login
|
|
|
|
def index
|
|
guardian.ensure_can_associate_groups!
|
|
render_serialized(AssociatedGroup.all, AssociatedGroupSerializer, root: "associated_groups")
|
|
end
|
|
end
|