dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit 7600b57854c84e9a14ad051b2a0b34787cff6178
parent 7f7a607f53a8fc39498e328efca68f5d28b85107
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Thu, 10 Nov 2022 12:49:29 -0800

moderators/vetted can always send pms

Diffstat:
Mpkg/database/tableUsers.go | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/pkg/database/tableUsers.go b/pkg/database/tableUsers.go @@ -539,5 +539,8 @@ func (u *User) IncrKarma(karma int64, description string) { // CanSendPM you get your first karma point after sending 20 public messages func (u *User) CanSendPM() bool { + if u.IsModerator() || u.Vetted { + return true + } return u.Karma >= 1 }