Thursday, September 19, 2024 11:50:21 PM
> settings

Customize


Authenticate

> navigation_policy.rb
# frozen_string_literal: true

class NavigationPolicy < ApplicationPolicy
  def blog?
    policy(:post).index?
  end

  def projects?
    policy(:project).index?
  end

  def files?
    policy(:uploaded_file).index?
  end

  def resume?
    policy(:personal).resume?
  end

  def linkedin?
    resume?
  end
end
All opinions represented herein are my own
- © 2024 itsthedevman
- build 3c15a1b