rubyforgood/babywearing

View on GitHub
app/controllers/concerns/agreement_scoped.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module AgreementScoped
  extend ActiveSupport::Concern

  included do
    before_action :set_agreement
  end

  def set_agreement
    @agreement = Agreement.find(params[:agreement_id])
  end
end