Skip to main content

max / makenotwork

testnot: retire the Fan+ "early access preview" framing testnot.work is now a public fabricated demo catalog, not a prod mirror, so the public Fan+ doc's "Early access (testnot.work) — sign in with your existing account" perk is false on every count (fake data, login broken, no longer gated). Remove that benefit bullet from fan-plus.md. Also drop the stale SSO-callback message ("isn't in the preview yet — it syncs from production daily"), which described the retired daily prod mirror; replace with a neutral "This account can't sign in here." Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-07-12 13:02 UTC
Commit: 4c6a323366f1bd2c1abd0626581fcb60a05ca3e8
Parent: eb18c31
2 files changed, +1 insertion, -2 deletions
@@ -8,7 +8,6 @@ Fan+ members receive:
8 8
9 9 - **Credit system**: Monthly credits that can be used toward purchases on the platform
10 10 - **Fan+ mark (`+`)**: Appended to your handle on your profile and across the site. Creators have a `c` mark in the same position; the two are mutually exclusive.
11 - - **Early access ([testnot.work](https://testnot.work))**: A preview build of the platform where new features land before they reach production. Sign in with your existing account; open to Fan+ members and creators.
12 11 - **Platform support**: Direct contribution to keeping the platform running with 0% creator fees
13 12
14 13 Fan+ will never gate access to any creator's content. It is separate from per-project membership tiers (which fans join); a fan can have both Fan+ and project memberships.
@@ -163,7 +163,7 @@ async fn sso_callback(
163 163 // Map the verified provider user id onto our mirrored account.
164 164 let db_user = match db::users::get_user_by_id(&state.db, token.user_id).await? {
165 165 Some(u) => u,
166 - None => return fail("Your account isn't in the preview yet — it syncs from production daily."),
166 + None => return fail("This account can't sign in here."),
167 167 };
168 168 if db_user.is_suspended() || db_user.is_deactivated() {
169 169 return fail("This account is not active.");