minor
This commit is contained in:
parent
ee1b86e36c
commit
61dbaa147e
4 changed files with 8 additions and 10 deletions
|
@ -184,7 +184,7 @@ const userController = {
|
|||
if (!recover_code) { return res.sendStatus(400) }
|
||||
const user = await User.findOne({ where: { recover_code: { [Op.eq]: recover_code } } })
|
||||
if (!user) { return res.sendStatus(400) }
|
||||
res.sendStatus(200)
|
||||
res.sendStatus(200)
|
||||
},
|
||||
|
||||
async updatePasswordWithRecoverCode (req, res) {
|
||||
|
@ -204,7 +204,7 @@ const userController = {
|
|||
async current (req, res) {
|
||||
if (!req.user) return res.status(400).send('Not logged')
|
||||
const user = await User.findByPk(req.user.id, { include: { model: FedUsers, as: 'followers' } })
|
||||
res.json(user)
|
||||
res.json(user)
|
||||
},
|
||||
|
||||
async getAll (req, res) {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
extends ../layout.pug
|
||||
block content
|
||||
h3 #{event.title}
|
||||
p Dove: #{event.place.name} - #{event.place.address}
|
||||
p Quando: #{datetime(event.start_datetime)}
|
||||
p 📍 Dove: #{event.place.name} - #{event.place.address}
|
||||
p ⏰ Quando: #{datetime(event.start_datetime)}
|
||||
br
|
||||
if event.image_path
|
||||
<center>
|
||||
|
@ -16,6 +16,6 @@ block content
|
|||
<a href="#{config.baseurl}/event/#{event.id}">#{config.baseurl}/event/#{event.id}</a>
|
||||
hr
|
||||
if to_confirm
|
||||
p Puoi confermare questo evento <a href="#{config.baseurl}/admin/confirm/#{event.id}">qui</a>
|
||||
p Puoi confermare questo evento premendo il tasto conferma a <a href="#{config.baseurl}/event/#{event.id}">questa pagina</a>
|
||||
else
|
||||
p Puoi eliminare queste notifiche <a href="#{config.baseurl}/del_notification/#{notification.remove_code}">qui</a>
|
||||
|
|
|
@ -8,6 +8,4 @@ html(lang="en")
|
|||
body
|
||||
block content
|
||||
hr
|
||||
small #{config.title} / #{config.description}
|
||||
br
|
||||
<a href='#{config.baseurl}'> #{config.baseurl}</a>
|
||||
small <a href="#{config.baseurl}">#{config.title}</a> / #{config.description}
|
|
@ -1,10 +1,10 @@
|
|||
doctype xml
|
||||
rss(version='2.0')
|
||||
rss(version='2.0' xmlns:atom="http://www.w3.org/2005/Atom")
|
||||
channel
|
||||
atom:link(href="#{config.baseurl}/feed/rss" rel="self" type="application/rss+xml")
|
||||
title #{config.title}
|
||||
link #{config.baseurl}
|
||||
description #{config.description}
|
||||
language #{config.locale}
|
||||
each event in events
|
||||
item
|
||||
title [#{moment.unix(event.start_datetime).utc(false).format("YY-MM-DD")}] #{event.title} @#{event.place.name}
|
||||
|
|
Loading…
Reference in a new issue