gitcoinco/code_fund_ads

View on GitHub
app/controllers/user_comments_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class UserCommentsController < ApplicationController
  before_action :authenticate_user!
  before_action :authorize_view!, only: :index
  before_action :set_user, only: :index

  def index
    @comments = @user.comment_threads.order(created_at: :desc)
  end

  private

  def set_user
    @user = if authorized_user.can_admin_system?
      User.find(params[:user_id])
    else
      current_user
    end
  end

  def authorize_view!
    render_forbidden unless authorized_user.can_view_comments?
  end
end