1# frozen_string_literal: true 2 3module My 4 class AuditsController < ApplicationController 5 def index 6 @audits = current_user.own_and_associated_audits 7 end 8 end 9end