igor-starostenko/report_factory

View on GitHub
app/controllers/base_users_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# Abstract class that stores common behavior for all controllers
# that are routed from /api/v1/users
class BaseUsersController < ApplicationController
  private

  def set_user
    @user = User.find(params.fetch(:id))
    return render_not_found(:user) unless @user
  end

  def same_user?
    @auth_user == @user && @user
  end

  def require_same_user
    same_user? || render_unauthorized
  end
end