mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
notify admin when new registration is waiting
This commit is contained in:
parent
843d4eb03a
commit
b7e40fb35c
3 changed files with 10 additions and 1 deletions
|
@ -484,6 +484,7 @@ def post_json_to_model(post_json, user, community) -> Post:
|
|||
if admin.id not in already_notified:
|
||||
notify = Notification(title='Suspicious content', url=post.ap_id, user_id=admin.id, author_id=user.id)
|
||||
db.session.add(notify)
|
||||
admin.unread_notifications += 1
|
||||
if domain.banned:
|
||||
post = None
|
||||
if not domain.banned:
|
||||
|
|
|
@ -10,7 +10,7 @@ from app.auth import bp
|
|||
from app.auth.forms import LoginForm, RegistrationForm, ResetPasswordRequestForm, ResetPasswordForm
|
||||
from app.auth.util import random_token, normalize_utf
|
||||
from app.email import send_verification_email, send_password_reset_email
|
||||
from app.models import User, utcnow, IpBan, UserRegistration
|
||||
from app.models import User, utcnow, IpBan, UserRegistration, Notification, Site
|
||||
from app.utils import render_template, ip_address, user_ip_banned, user_cookie_banned, banned_ip_addresses, \
|
||||
finalize_user_setup
|
||||
|
||||
|
@ -116,6 +116,12 @@ def register():
|
|||
if g.site.registration_mode == 'RequireApplication':
|
||||
application = UserRegistration(user_id=user.id, answer=form.question.data)
|
||||
db.session.add(application)
|
||||
for admin in Site.admins():
|
||||
notify = Notification(title='New registration', url='/admin/approve_registrations', user_id=admin.id,
|
||||
author_id=user.id)
|
||||
admin.unread_notifications += 1
|
||||
db.session.add(notify)
|
||||
# todo: notify everyone with the "approve registrations" permission, instead of just all admins
|
||||
db.session.commit()
|
||||
return redirect(url_for('auth.please_wait'))
|
||||
else:
|
||||
|
|
|
@ -752,6 +752,7 @@ def post_report(post_id: int):
|
|||
if admin.id not in already_notified:
|
||||
notify = Notification(title='Suspicious content', url=post.ap_id, user_id=admin.id, author_id=current_user.id)
|
||||
db.session.add(notify)
|
||||
admin.unread_notifications += 1
|
||||
db.session.commit()
|
||||
|
||||
# todo: federate report to originating instance
|
||||
|
@ -853,6 +854,7 @@ def post_reply_report(post_id: int, comment_id: int):
|
|||
if admin.id not in already_notified:
|
||||
notify = Notification(title='Suspicious content', url=post.ap_id, user_id=admin.id, author_id=current_user.id)
|
||||
db.session.add(notify)
|
||||
admin.unread_notifications += 1
|
||||
db.session.commit()
|
||||
|
||||
# todo: federate report to originating instance
|
||||
|
|
Loading…
Add table
Reference in a new issue