Compare commits

..

No commits in common. "f02a6b6a3d5dd67201999abb6a64ec7445f5f8fd" and "9e9ee0c99541f7349d405dec48faf98c5d558108" have entirely different histories.

2 changed files with 2 additions and 5 deletions

View File

@ -6,9 +6,6 @@ require 'csv'
class GuestsController < ApplicationController class GuestsController < ApplicationController
GUEST_PARAMS = { only: %i[id name status], include: { group: { only: %i[id name] } } }.freeze GUEST_PARAMS = { only: %i[id name status], include: { group: { only: %i[id name] } } }.freeze
skip_before_action :authenticate_user!, only: :update
def index def index
render json: Guest.includes(:group) render json: Guest.includes(:group)
.left_joins(:group) .left_joins(:group)
@ -34,6 +31,6 @@ class GuestsController < ApplicationController
private private
def guest_params def guest_params
user_signed_in? ? params.expect(guest: %i[name group_id status]) : params.expect(guest: %i[status]) params.expect(guest: %i[name group_id status])
end end
end end

View File

@ -20,7 +20,7 @@ class InvitationsController < ApplicationController
invitation = Invitation.includes(:guests).find(params[:id]) invitation = Invitation.includes(:guests).find(params[:id])
if invitation if invitation
render json: invitation, only: :id, include: { guests: { only: %i[id name status] } }, status: :ok render json: invitation, only: :id, include: { guests: { only: %i[id name] } }, status: :ok
else else
render json: { error: 'Invitation not found' }, status: :not_found render json: { error: 'Invitation not found' }, status: :not_found
end end