1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-24 08:33:02 -05:00
2018-08-19 00:58:53 +02:00

30 lines
430 B
Ruby

# frozen_string_literal: true
class InvitePolicy < ApplicationPolicy
def index?
staff?
end
def create?
min_required_role?
end
def deactivate_all?
admin?
end
def destroy?
owner? || (Setting.min_invite_role == 'admin' ? admin? : staff?)
end
private
def owner?
record.user_id == current_user&.id
end
def min_required_role?
current_user&.role?(Setting.min_invite_role)
end
end