1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-14 14:48:55 +09:00
whippy-edition/app/policies/software_update_policy.rb

8 lines
129 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SoftwareUpdatePolicy < ApplicationPolicy
def index?
role.can?(:view_devops)
end
end