CLOSER-Cohorts/archivist

View on GitHub
app/policies/topic_policy.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class TopicPolicy < ApplicationPolicy
  class Scope < Scope
    def resolve
      scope.all
    end
  end
end