1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

lint fixes

This commit is contained in:
kevmodrome 2020-06-29 10:12:13 +02:00
parent ae21d5c505
commit 96f0de3366
2 changed files with 10 additions and 10 deletions

View file

@ -1,5 +1,5 @@
export { default as General } from './General.svelte';
export { default as Integrations } from './Integrations.svelte';
export { default as Permissions } from './Permissions.svelte';
export { default as Users } from './Users.svelte';
export { default as DangerZone } from './DangerZone.svelte';
export { default as General } from "./General.svelte"
export { default as Integrations } from "./Integrations.svelte"
export { default as Permissions } from "./Permissions.svelte"
export { default as Users } from "./Users.svelte"
export { default as DangerZone } from "./DangerZone.svelte"

View file

@ -7,7 +7,7 @@ const {
ADMIN_LEVEL_ID,
} = require("../../utilities/accessLevels")
exports.fetch = async function (ctx) {
exports.fetch = async function(ctx) {
const database = new CouchDB(ctx.user.instanceId)
const data = await database.query("database/by_type", {
include_docs: true,
@ -17,7 +17,7 @@ exports.fetch = async function (ctx) {
ctx.body = data.rows.map(row => row.doc)
}
exports.create = async function (ctx) {
exports.create = async function(ctx) {
const database = new CouchDB(ctx.user.instanceId)
const appId = (await database.get("_design/database")).metadata.applicationId
const { username, password, name, accessLevelId } = ctx.request.body
@ -63,7 +63,7 @@ exports.create = async function (ctx) {
}
}
exports.update = async function (ctx) {
exports.update = async function(ctx) {
const db = new CouchDB(ctx.user.instanceId)
const user = ctx.request.body
@ -81,14 +81,14 @@ exports.update = async function (ctx) {
}
}
exports.destroy = async function (ctx) {
exports.destroy = async function(ctx) {
const database = new CouchDB(ctx.user.instanceId)
await database.destroy(getUserId(ctx.params.username))
ctx.message = `User ${ctx.params.username} deleted.`
ctx.status = 200
}
exports.find = async function (ctx) {
exports.find = async function(ctx) {
const database = new CouchDB(ctx.user.instanceId)
const user = await database.get(getUserId(ctx.params.username))
ctx.body = {