1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00
This commit is contained in:
Andrew Kingston 2021-05-14 15:41:58 +01:00
parent f6babcbe8d
commit b402254b2c
2 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@ const SCREEN_PREFIX = DocumentTypes.SCREEN + SEPARATOR
* @returns {Promise<void>} The view now exists, please note that the next view of this query will actually build it,
* so it may be slow.
*/
exports.createLinkView = async (appId) => {
exports.createLinkView = async appId => {
const db = new CouchDB(appId)
const designDoc = await db.get("_design/database")
const view = {
@ -57,7 +57,7 @@ exports.createLinkView = async (appId) => {
await db.put(designDoc)
}
exports.createRoutingView = async (appId) => {
exports.createRoutingView = async appId => {
const db = new CouchDB(appId)
const designDoc = await db.get("_design/database")
const view = {
@ -90,7 +90,7 @@ async function searchIndex(appId, indexName, fnString) {
await db.put(designDoc)
}
exports.createAllSearchIndex = async (appId) => {
exports.createAllSearchIndex = async appId => {
await searchIndex(
appId,
SearchIndexes.ROWS,

View file

@ -25,7 +25,7 @@ module.exports.removeNull = obj => {
module.exports.updateContext = obj => {
if (obj.now == null) {
obj.now = (new Date()).toISOString()
obj.now = new Date().toISOString()
}
function recurse(obj) {
for (let key of Object.keys(obj)) {