12 lines
202 B
Ruby
12 lines
202 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IpAddressPolicy < ApplicationPolicy
|
|
def index?
|
|
user.is_moderator?
|
|
end
|
|
|
|
def html_data_attributes
|
|
super & record.attributes.keys.map(&:to_sym)
|
|
end
|
|
end
|