Development

master
Jonatan Nilsson 2022-07-26 02:56:07 +00:00
parent ebd3cd4d26
commit f3ec968dbb
3 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ export default class ArticleRoutes {
/** GET: /api/articles/[path] */
async getArticle(ctx) {
let res = await ctx.db.safeCallProc('article_get_single', [ctx.params.path])
let res = await ctx.db.safeCallProc('common.article_get_single', [ctx.params.path])
let out = {
article: parseArticle(res.results[0][0]),
@ -23,7 +23,7 @@ export default class ArticleRoutes {
/** GET: /api/auth/articles */
async auth_getAllArticles(ctx) {
let res = await ctx.db.safeCallProc('article_auth_get_all', [
let res = await ctx.db.safeCallProc('common.article_auth_get_all', [
ctx.state.auth_token,
Math.max(ctx.query.get('page') || 1, 1),
Math.min(ctx.query.get('per_page') || 10, 25)
@ -101,7 +101,7 @@ export default class ArticleRoutes {
}
}
console.log(params)
let res = await ctx.db.safeCallProc('article_auth_get_update_create', params)
let res = await ctx.db.safeCallProc('common.article_auth_get_update_create', params)
let out = {
article: parseArticle(res.results[0][0]),

View File

@ -13,7 +13,7 @@ export default class AuthenticationRoutes {
/** GET: /api/authentication/login */
async login(ctx) {
let res = await ctx.db.safeCallProc('dbo.common_auth_login', [
let res = await ctx.db.safeCallProc('common.auth_login', [
ctx.req.body.email,
ctx.req.body.password,
])

View File

@ -1,7 +1,7 @@
import { parseFile } from '../file/util.mjs'
export async function getTree(ctx) {
let res = await ctx.db.safeCallProc('pages_get_tree', [])
let res = await ctx.db.safeCallProc('common.pages_get_tree', [])
let out = []
let children = []
let map = new Map()
@ -26,7 +26,7 @@ export async function getTree(ctx) {
}
export async function getPage(ctx, path, page = 0, per_page = 10) {
let res = await ctx.db.safeCallProc('pages_get_single', [path, page, per_page])
let res = await ctx.db.safeCallProc('common.pages_get_single', [path, page, per_page])
let articleMap = new Map()