Fix names and urls of banned artists being visible in Google through artist version pages.
6 lines
115 B
Ruby
6 lines
115 B
Ruby
class ArtistVersionPolicy < ApplicationPolicy
|
|
def can_view_banned?
|
|
policy(Artist).can_view_banned?
|
|
end
|
|
end
|