diff --git a/ghost/portal/src/App.js b/ghost/portal/src/App.js index d209b98466..e5de7e988d 100644 --- a/ghost/portal/src/App.js +++ b/ghost/portal/src/App.js @@ -242,6 +242,8 @@ export default class App extends React.Component { data.site.disableBackground = JSON.parse(value); } else if (key === 'allowSelfSignup') { data.site.allow_self_signup = JSON.parse(value); + } else if (key === 'membersSignupAccess' && value) { + data.site.members_signup_access = value; } } data.site.portal_plans = allowedPlans;