mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Implement capability to pin comments above others
Adds capability to pin comments before others. Implements FS#10863. Signed-off-by: Mark Weiman <mark.weiman@markzz.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
3088fd0f38
commit
7d4c0c9ffa
13 changed files with 187 additions and 14 deletions
|
@ -8,6 +8,7 @@ define("CRED_ACCOUNT_SEARCH", 5);
|
|||
define("CRED_COMMENT_DELETE", 6);
|
||||
define("CRED_COMMENT_VIEW_DELETED", 22);
|
||||
define("CRED_COMMENT_EDIT", 25);
|
||||
define("CRED_COMMENT_PIN", 26);
|
||||
define("CRED_PKGBASE_ADOPT", 7);
|
||||
define("CRED_PKGBASE_SET_KEYWORDS", 8);
|
||||
define("CRED_PKGBASE_DELETE", 9);
|
||||
|
@ -60,6 +61,7 @@ function has_credential($credential, $approved_users=array()) {
|
|||
case CRED_COMMENT_DELETE:
|
||||
case CRED_COMMENT_VIEW_DELETED:
|
||||
case CRED_COMMENT_EDIT:
|
||||
case CRED_COMMENT_PIN:
|
||||
case CRED_PKGBASE_ADOPT:
|
||||
case CRED_PKGBASE_SET_KEYWORDS:
|
||||
case CRED_PKGBASE_DELETE:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue