Browse Source

Formatting

pull/1537/head
mike12345567 5 years ago
parent
commit
96ad77b41d
  1. 2
      packages/builder/src/components/start/AppCard.svelte
  2. 2
      packages/server/src/middleware/authorized.js
  3. 4
      packages/server/src/middleware/builder.js

2
packages/builder/src/components/start/AppCard.svelte

@ -65,7 +65,7 @@
<Body size="S">
{#if app.updatedAt}
{processStringSync("Updated {{ duration time 'millisecond' }} ago", {
time: (new Date().getTime() - new Date(app.updatedAt).getTime())
time: new Date().getTime() - new Date(app.updatedAt).getTime(),
})}
{:else}
Never updated

2
packages/server/src/middleware/authorized.js

@ -14,8 +14,6 @@ const WEBHOOK_ENDPOINTS = new RegExp(
["webhooks/trigger", "webhooks/schema"].join("|")
)
module.exports = (permType, permLevel = null) => async (ctx, next) => {
// webhooks don't need authentication, each webhook unique
if (WEBHOOK_ENDPOINTS.test(ctx.request.url)) {

4
packages/server/src/middleware/builder.js

@ -44,7 +44,7 @@ async function updateAppUpdatedAt(ctx) {
const appId = ctx.appId
// if debouncing skip this update
// get methods also aren't updating
if (await checkDebounce(appId) || ctx.method === "GET") {
if ((await checkDebounce(appId)) || ctx.method === "GET") {
return
}
const db = new CouchDB(appId)
@ -72,4 +72,4 @@ module.exports = async (ctx, permType) => {
await checkDevAppLocks(ctx)
// set updated at time on app
await updateAppUpdatedAt(ctx)
}
}

Loading…
Cancel
Save