Fixed issue with group fetching, serializer for loading password

• Fixed:
- issue with group fetching, serializer for loading password for admin only
This commit is contained in:
mgabdev
2020-09-17 18:21:58 -05:00
parent 7c952a1e06
commit 8f57514bc8
2 changed files with 7 additions and 3 deletions

View File

@@ -61,7 +61,7 @@ class Api::V1::GroupsController < Api::BaseController
end
def show
render json: @group, serializer: REST::GroupSerializer
render json: @group, serializer: REST::GroupSerializer, individual_group: true
end
def create