podemos-info/census

View on GitHub
app/policies/active_admin/comment_policy.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module ActiveAdmin
  class CommentPolicy < ApplicationPolicy
    def base_role?
      true
    end

    def index?
      true
    end

    def destroy?
      false
    end

    def update?
      false
    end
  end
end