Remove unneeded argument
This commit is contained in:
parent
6b9061fd64
commit
20daae57ba
1 changed files with 1 additions and 3 deletions
|
|
@ -2021,12 +2021,10 @@ module.exports = async (
|
||||||
app.post(`/api/gun/wall/`, async (req, res) => {
|
app.post(`/api/gun/wall/`, async (req, res) => {
|
||||||
try {
|
try {
|
||||||
const { tags, title, contentItems, enableTipsOverlay } = req.body
|
const { tags, title, contentItems, enableTipsOverlay } = req.body
|
||||||
const SEA = require('../services/gunDB/Mediator').mySEA
|
|
||||||
const postRes = await GunActions.createPostNew(
|
const postRes = await GunActions.createPostNew(
|
||||||
tags,
|
tags,
|
||||||
title,
|
title,
|
||||||
contentItems,
|
contentItems
|
||||||
SEA
|
|
||||||
)
|
)
|
||||||
if (enableTipsOverlay) {
|
if (enableTipsOverlay) {
|
||||||
const [postID] = postRes
|
const [postID] = postRes
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue