This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/controllers/groups_controller.rb
2014-02-07 10:44:51 -05:00

16 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, BasicUserSerializer)
end
end