metamaps/metamaps

View on GitHub
app/policies/explore_policy.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class ExplorePolicy < ApplicationPolicy
  def active?
    true
  end

  def featured?
    true
  end

  def mine?
    true
  end

  def shared?
    true
  end

  def starred?
    true
  end

  def mapper?
    true
  end
end