From dc9f35fc48469a364c58005940274eec6448b982 Mon Sep 17 00:00:00 2001 From: r888888888 Date: Fri, 29 Jul 2016 16:54:47 -0700 Subject: [PATCH] show banned artist info to gold members --- app/models/artist.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/artist.rb b/app/models/artist.rb index bd32a7a58..a4de0028d 100644 --- a/app/models/artist.rb +++ b/app/models/artist.rb @@ -492,6 +492,6 @@ class Artist < ActiveRecord::Base end def visible? - !is_banned? || CurrentUser.is_moderator? + !is_banned? || CurrentUser.is_gold? end end