1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/api/abuses_controller.rb
2016-03-23 18:39:41 +01:00

23 lines
494 B
Ruby

class API::AbusesController < API::ApiController
before_action :authenticate_user!, except: :create
def index
@groups = Group.all
end
def create
@abuse = Abuse.new(abuse_params)
if @abuse.save
render status: :created
else
render json: @abuse.errors.full_messages, status: :unprocessable_entity
end
end
private
def abuse_params
params.require(:abuse).permit(:signaled_type, :signaled_id, :first_name, :last_name, :email, :message)
end
end