Skip to content

Instantly share code, notes, and snippets.

@IsAmrish
Last active January 23, 2020 17:55
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Minimal JSON file for adding a single user in a ghost environment.
{
"data": {
"users": [
{
"email": "sample@gmail.com",
"name": "sample"
}
]
},
"meta": {
"version": "3.3.0"
}
}
@IsAmrish
Copy link
Author

IsAmrish commented Jan 23, 2020

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 and name are required to create the author.
  • meta version is the ghost version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment