mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
15 lines
434 B
Ruby
15 lines
434 B
Ruby
class GroupsController < ApplicationController
|
|
|
|
def show
|
|
group = Group.where(name: params.require(:id)).first
|
|
guardian.ensure_can_see!(group)
|
|
render_serialized(group, BasicGroupSerializer)
|
|
end
|
|
|
|
def members
|
|
group = Group.where(name: params.require(:group_id)).first
|
|
guardian.ensure_can_see!(group)
|
|
render_serialized(group.users.order('username_lower asc').limit(200).to_a, GroupUserSerializer)
|
|
end
|
|
|
|
end
|