logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

instance_policy.rb (143B)


  1. # frozen_string_literal: true
  2. class InstancePolicy < ApplicationPolicy
  3. def index?
  4. admin?
  5. end
  6. def resubscribe?
  7. admin?
  8. end
  9. end