mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Require comments when flagging packages out-of-date
Implements FS#42827. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
6b7e26a2d1
commit
396e50bdc8
6 changed files with 27 additions and 12 deletions
|
@ -139,14 +139,15 @@ def flag(cur, uid, pkgbase_id):
|
|||
user = username_from_id(cur, uid)
|
||||
pkgbase = pkgbase_from_id(cur, pkgbase_id)
|
||||
to = [get_maintainer_email(cur, pkgbase_id)]
|
||||
text = sys.stdin.read()
|
||||
|
||||
user_uri = aur_location + '/account/' + user + '/'
|
||||
pkgbase_uri = aur_location + '/pkgbase/' + pkgbase + '/'
|
||||
|
||||
subject = 'AUR Out-of-date Notification for %s' % (pkgbase)
|
||||
body = 'Your package %s [1] has been flagged out-of-date by %s [2]. ' % \
|
||||
body = 'Your package %s [1] has been flagged out-of-date by %s [2]:' % \
|
||||
(pkgbase, user)
|
||||
body += '\n\n'
|
||||
body += '\n\n' + text + '\n\n'
|
||||
body += '[1] ' + pkgbase_uri + '\n'
|
||||
body += '[2] ' + user_uri
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue