rubyforgood/babywearing

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module UserScoped
  extend ActiveSupport::Concern

  included do
    before_action :set_user
  end

  def set_user
    @user = current_user
  end
end