crowdAI/crowdai

View on GitHub
app/controllers/gdpr_exports_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class GdprExportsController < ApplicationController
  before_action :authenticate_participant!
  respond_to :js

  def create
    GdprExportJob.perform_later(
      participant_id: current_participant.id)
  end

end