mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +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
|