varvet/godmin

View on GitHub
lib/generators/godmin/policy/templates/policy.rb

Summary

Maintainability
A
0 mins
Test Coverage
<% module_namespacing do -%>
class <%= class_name %>Policy < Godmin::Authorization::Policy
  def index?
    true
  end

  def show?
    true
  end

  def create?
    true
  end

  def update?
    true
  end

  def destroy?
    true
  end
end
<% end -%>