This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-11-11 11:23:33 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountPolicy < ApplicationPolicy
|
|
|
|
def index?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def show?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def suspend?
|
|
|
|
staff? && !record.user&.staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsuspend?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def silence?
|
|
|
|
staff? && !record.user&.staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsilence?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def redownload?
|
|
|
|
admin?
|
|
|
|
end
|
|
|
|
|
2018-04-02 04:45:07 -07:00
|
|
|
def remove_avatar?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
2017-11-11 11:23:33 -08:00
|
|
|
def subscribe?
|
|
|
|
admin?
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsubscribe?
|
|
|
|
admin?
|
|
|
|
end
|
|
|
|
|
|
|
|
def memorialize?
|
|
|
|
admin? && !record.user&.admin?
|
|
|
|
end
|
|
|
|
end
|