Skip to content

Commit

Permalink
Add leveledReaderLevel (BL-5120)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-polk committed Oct 12, 2017
1 parent 5115647 commit b9bcc80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cloud/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,8 @@ Parse.Cloud.define("setupTables", function(request, response) {
{name: "tools", type:"Array"},
{name: "updateSource", type:"String"},
{name: "uploader", type:"Pointer<_User>"},
{name: "lastUploaded", type:"Date"}
{name: "lastUploaded", type:"Date"},
{name: "leveledReaderLevel", type:"Number"}
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var serverConfig = {
databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
appId: process.env.APP_ID || 'myAppId',
masterKey: process.env.MASTER_KEY || '',
masterKey: process.env.MASTER_KEY || '123',
serverURL: process.env.SERVER_URL || 'http://localhost:1337/parse',

//password reset
Expand Down

0 comments on commit b9bcc80

Please sign in to comment.