# frozen_string_literal: true module Archangel ## # Entry policy # class EntryPolicy < ApplicationPolicy ## # Check if `#sort` action is authorized for current user # # @return [Boolean] true for all roles # def sort? true end end end