From e1877b50242c0ae86f7b3aed555be5a06f88f03b Mon Sep 17 00:00:00 2001 From: glyph Date: Wed, 15 Jun 2022 08:46:16 +0100 Subject: [PATCH 1/3] fix link to set new password --- peach-web/src/routes/authentication/forgot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peach-web/src/routes/authentication/forgot.rs b/peach-web/src/routes/authentication/forgot.rs index d61f90d..84ff7df 100644 --- a/peach-web/src/routes/authentication/forgot.rs +++ b/peach-web/src/routes/authentication/forgot.rs @@ -30,7 +30,7 @@ pub fn build_template(request: &Request) -> PreEscaped { form id="sendPasswordReset" action="/auth/temporary" method="post" { div id="buttonDiv" { input class="button button-primary center" style="margin-top: 1rem;" type="submit" value="Send Temporary Password" title="Send temporary password to Scuttlebutt admin(s)"; - a href="/auth/reset_password" class="button button-primary center" title="Set a new password using the temporary password" { + a href="/auth/reset" class="button button-primary center" title="Set a new password using the temporary password" { "Set New Password" } } From 1b43dc8b189d2c30ff735a712f10d15434954a5b Mon Sep 17 00:00:00 2001 From: glyph Date: Thu, 16 Jun 2022 09:18:38 +0100 Subject: [PATCH 2/3] bump patch version --- peach-web/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peach-web/Cargo.toml b/peach-web/Cargo.toml index 11d345b..be35863 100644 --- a/peach-web/Cargo.toml +++ b/peach-web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peach-web" -version = "0.6.13" +version = "0.6.14" authors = ["Andrew Reid "] edition = "2018" description = "peach-web is a web application which provides a web interface for monitoring and interacting with the PeachCloud device. This allows administration of the single-board computer (ie. Raspberry Pi) running PeachCloud, as well as the ssb-server and related plugins." From cddcb8f9bd4cf885f167193377395a64de14328d Mon Sep 17 00:00:00 2001 From: glyph Date: Thu, 16 Jun 2022 09:19:59 +0100 Subject: [PATCH 3/3] fix spacing in manifest --- peach-web/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/peach-web/Cargo.toml b/peach-web/Cargo.toml index 9efc691..be35863 100644 --- a/peach-web/Cargo.toml +++ b/peach-web/Cargo.toml @@ -9,6 +9,7 @@ repository = "https://github.com/peachcloud/peach-web" readme = "README.md" license = "AGPL-3.0-only" publish = false + [package.metadata.deb] depends = "apache2-utils" extended-description = """\ @@ -26,9 +27,11 @@ assets = [ ["static/images/*", "/usr/share/peach-web/static/images/", "644"], ["README.md", "/usr/share/doc/peach-web/README", "644"], ] + [badges] travis-ci = { repository = "peachcloud/peach-web", branch = "master" } maintenance = { status = "actively-developed" } + [dependencies] async-std = "1.10" base64 = "0.13"