mirror of
https://github.com/System-End/identity-vault.git
synced 2026-04-19 20:55:11 +00:00
8 lines
193 B
Ruby
8 lines
193 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AnalyticsPolicy < ApplicationPolicy
|
|
def show?
|
|
# Allow document verifiers and admins to view analytics
|
|
user_is_manual_document_verifier?
|
|
end
|
|
end
|