diff options
author | Mark Weiman <mark.weiman@markzz.com> | 2015-12-11 19:01:31 -0500 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-12-12 15:09:47 +0100 |
commit | 7d4c0c9ffa55ca60aea24b6aa64417783a15ea80 (patch) | |
tree | d5f9ddb43f6af10feb2ac375ed4ad87bf4771c93 /web/lib/credentials.inc.php | |
parent | 3088fd0f389dbe4be1c7e62931ed18658ca6d7a2 (diff) | |
download | aurweb-7d4c0c9ffa55ca60aea24b6aa64417783a15ea80.tar.xz |
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>
Diffstat (limited to 'web/lib/credentials.inc.php')
-rw-r--r-- | web/lib/credentials.inc.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/lib/credentials.inc.php b/web/lib/credentials.inc.php index 648d78c..71bf5ff 100644 --- a/web/lib/credentials.inc.php +++ b/web/lib/credentials.inc.php @@ -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: |