From ecca91753f219baea6b916eb73663e8cb668cae3 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 20 May 2026 12:58:50 -0400 Subject: [PATCH] feat(fc3a): ArtistService.overview returns is_subscription for the badge Co-Authored-By: Claude Opus 4.7 (1M context) --- backend/app/services/artist_service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app/services/artist_service.py b/backend/app/services/artist_service.py index d7b6b5a..eea7afb 100644 --- a/backend/app/services/artist_service.py +++ b/backend/app/services/artist_service.py @@ -115,6 +115,7 @@ class ArtistService: "id": artist.id, "name": artist.name, "slug": artist.slug, + "is_subscription": bool(artist.is_subscription), "image_count": int(image_count), "date_range": { "min": dmin.isoformat() if dmin else None,