mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2025-11-22 08:33:40 +00: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
|