Compare commits

...

4 Commits

5 changed files with 18 additions and 6 deletions

12
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
"cSpell.words": [
"admindetails",
"aeiou",
"bcdfghjklmnpqrstvwxyz",
"flameborn",
"peppermintywiki",
"returnto",
"sitename",
"sqlatenwiki"
]
}

View File

@ -13,6 +13,7 @@ This is the next release of Pepperminty Wiki, that hasn't been released yet.
- **Fixed:** [Rest API] Documented `redirect` and `redirected_from` GET params to the `view` action.
- **Fixed:** Fixed bug where templating variables were not populated under some circumstances.
- **Fixed:** Typo on credits page
- **Fixed:** Typos in user table
## v0.24-beta1

View File

@ -68,7 +68,7 @@ docker run -d sqlatenwiki/peppermintywiki:stable
## Security
If you've found a security issue, please don't open an issue. Instead, get in touch privately - e.g. via [Keybase](https://keybase.io/sbrl) or by email (`security [at sign] starbeamrainbowlabs [replace me with a dot] com`), and I'll try to respond ASAP.
If you've found a security issue, please don't open an issue. Instead, get in touch privately - e.g. via email (`security [at sign] starbeamrainbowlabs [replace me with a dot] com`), and I'll try to respond ASAP.
If you would like to encrypt any communications with me, you can find my GPG key [here](https://starbeamrainbowlabs.com/sbrl.asc).

View File

@ -9,4 +9,3 @@ Additional methods of contact:
- The email address attached to my commits
- My various profiles listed on my website: <https://starbeamrainbowlabs.com/>
- Twitter: <https://twitter.com/SBRLabs>

View File

@ -5,9 +5,9 @@
register_module([
"name" => "User Organiser",
"version" => "0.1.2",
"version" => "0.1.3",
"author" => "Starbeamrainbowlabs",
"description" => "Adds a organiser page that lets moderators (or better) control the reegistered user accounts, and perform adminstrative actions such as password resets, and adding / removing accounts.",
"description" => "Adds a organiser page that lets moderators (or better) control the registered user accounts, and perform administrative actions such as password resets, and adding / removing accounts.",
"id" => "feature-user-table",
"code" => function() {
global $settings, $env;
@ -149,7 +149,7 @@ https://github.com/sbrl/Pepperminty-Wiki/
");
$content = "<h2>Add User</h2>
<p>The new user was added to $settings->sitename sucessfully! Their details are as follows:</p>
<p>The new user was added to $settings->sitename successfully! Their details are as follows:</p>
<ul>
<li>Username: <code>$new_username</code></li>";
if(!empty($new_email))
@ -282,7 +282,7 @@ Powered by Pepperminty Wiki
});
if($env->is_admin) add_help_section("949-user-table", "Managing User Accounts", "<p>As a moderator on $settings->sitename, you can use the <a href='?action=user-table'>User Table</a> to adminstrate the user accounts on $settings->sitename. It allows you to perform actions such as adding and removing accounts, and resetting passwords.</p>");
if($env->is_admin) add_help_section("949-user-table", "Managing User Accounts", "<p>As a moderator on $settings->sitename, you can use the <a href='?action=user-table'>User Table</a> to administrate the user accounts on $settings->sitename. It allows you to perform actions such as adding and removing accounts, and resetting passwords.</p>");
}
]);
/**