Last active
January 23, 2020 17:55
-
-
Save isamrish/cd0851e0d983cc1a33759eb7c93c6f99 to your computer and use it in GitHub Desktop.
Minimal JSON file for adding a single user in a ghost environment.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"users": [ | |
{ | |
"email": "sample@gmail.com", | |
"name": "sample" | |
} | |
] | |
}, | |
"meta": { | |
"version": "3.3.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is useful when you want to add one or multiple users without inviting them through sending the email, I mean for testing purposes.
Here:
email
andname
are required to create the author.meta version
is theghost version
.