mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-22 01:46:52 +01:00
contribution fix
-add destroy session
This commit is contained in:
parent
29387ac20c
commit
aa8d72923c
@ -63,4 +63,8 @@ router.get('/twitter_callback', (req, res) => {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
router.get('/logout', (req, res) => {
|
||||||
|
req.session.destroy()
|
||||||
|
})
|
||||||
|
|
||||||
module.exports = router
|
module.exports = router
|
||||||
|
@ -13,8 +13,9 @@ module.exports = (sequelize, DataTypes) => {
|
|||||||
{
|
{
|
||||||
hooks: {
|
hooks: {
|
||||||
beforeCreate: (contribution, options) => {
|
beforeCreate: (contribution, options) => {
|
||||||
const { name, company } = contribution.dataValues
|
console.log('contribution', contribution.dataValues)
|
||||||
if (name.length < 4 || name.length > 35) {
|
const { name, company, socialType } = contribution.dataValues
|
||||||
|
if (socialType !== 'anonymous' && (name.length < 4 || name.length > 35)) {
|
||||||
throw new Error('Wrong name')
|
throw new Error('Wrong name')
|
||||||
}
|
}
|
||||||
if (company && company.length > 35) {
|
if (company && company.length > 35) {
|
||||||
|
Loading…
Reference in New Issue
Block a user