summaryrefslogtreecommitdiff
path: root/src/ui
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/routes/ch/channel.rs6
-rw-r--r--src/ui/routes/get.rs6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/routes/ch/channel.rs b/src/ui/routes/ch/channel.rs
index 353d000..a338f1f 100644
--- a/src/ui/routes/ch/channel.rs
+++ b/src/ui/routes/ch/channel.rs
@@ -8,7 +8,7 @@ pub mod get {
app::App,
channel,
error::Internal,
- login::Login,
+ token::extract::Identity,
ui::{
assets::{Asset, Assets},
error::NotFound,
@@ -17,10 +17,10 @@ pub mod get {
pub async fn handler(
State(app): State<App>,
- login: Option<Login>,
+ identity: Option<Identity>,
Path(channel): Path<channel::Id>,
) -> Result<Asset, Error> {
- login.ok_or(Error::NotLoggedIn)?;
+ let _ = identity.ok_or(Error::NotLoggedIn)?;
app.channels()
.get(&channel)
.await
diff --git a/src/ui/routes/get.rs b/src/ui/routes/get.rs
index 97737e1..2fcb51c 100644
--- a/src/ui/routes/get.rs
+++ b/src/ui/routes/get.rs
@@ -2,12 +2,12 @@ use axum::response::{self, IntoResponse, Redirect};
use crate::{
error::Internal,
- login::Login,
+ token::extract::Identity,
ui::assets::{Asset, Assets},
};
-pub async fn handler(login: Option<Login>) -> Result<Asset, Error> {
- login.ok_or(Error::NotLoggedIn)?;
+pub async fn handler(identity: Option<Identity>) -> Result<Asset, Error> {
+ let _ = identity.ok_or(Error::NotLoggedIn)?;
Assets::index().map_err(Error::Internal)
}