Remove settings locked field

this was a too generic and will be replaced with feature flags
This commit is contained in:
Girish Ramakrishnan
2019-05-06 20:01:35 -07:00
parent 0e8fe8cd07
commit 222d2840cf
5 changed files with 19 additions and 22 deletions

View File

@@ -13,7 +13,7 @@ var assert = require('assert'),
database = require('./database.js'),
DatabaseError = require('./databaseerror');
const SETTINGS_FIELDS = [ 'name', 'value', 'locked' ].join(',');
const SETTINGS_FIELDS = [ 'name', 'value' ].join(',');
function get(key, callback) {
assert.strictEqual(typeof key, 'string');