mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 05:26:27 +01:00
25 lines
390 B
Ruby
25 lines
390 B
Ruby
# frozen_string_literal: true
|
|
|
|
class InvitePolicy < ApplicationPolicy
|
|
def index?
|
|
staff?
|
|
end
|
|
|
|
def create?
|
|
min_required_role?
|
|
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
|