mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 00:38:07 +01:00
8 lines
127 B
Ruby
8 lines
127 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class DashboardPolicy < ApplicationPolicy
|
||
|
def index?
|
||
|
role.can?(:view_dashboard)
|
||
|
end
|
||
|
end
|