mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Add a new user group "Trusted User & Developer"
This group has full permissions on everything. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
1b901616dc
commit
3610f3c6a4
7 changed files with 26 additions and 5 deletions
|
@ -17,6 +17,8 @@
|
|||
print __("Trusted User");
|
||||
} elseif ($row["AccountType"] == "Developer") {
|
||||
print __("Developer");
|
||||
} elseif ($row["AccountType"] == "Trusted User & Developer") {
|
||||
print __("Trusted User & Developer");
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
|
|
|
@ -37,6 +37,10 @@
|
|||
<?php $T == 3 ? print " selected=\"selected\">" : print ">";
|
||||
print __("Developer")."\n"; ?>
|
||||
</option>
|
||||
<option value="4"
|
||||
<?php $T == 4 ? print " selected=\"selected\">" : print ">";
|
||||
print __("Trusted User & Developer")."\n"; ?>
|
||||
</option>
|
||||
<?php endif; ?>
|
||||
|
||||
</select>
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
<option value="u"><?= __("Normal user"); ?></option>
|
||||
<option value="t"><?= __("Trusted user"); ?></option>
|
||||
<option value="d"><?= __("Developer"); ?></option>
|
||||
<option value="td"><?= __("Trusted User & Developer"); ?></option>
|
||||
</select>
|
||||
</p>
|
||||
<p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue