mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 11:42:25 +00:00
Implement Nextcloud login flow
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
use actix_web::{http::StatusCode, ResponseError};
|
||||
|
||||
#[derive(Debug, thiserror::Error)]
|
||||
|
||||
pub enum Error {
|
||||
#[error("Not found")]
|
||||
NotFound,
|
||||
@@ -15,6 +14,12 @@ pub enum Error {
|
||||
#[error("Read-only")]
|
||||
ReadOnly,
|
||||
|
||||
#[error("Error generating password hash")]
|
||||
PasswordHash,
|
||||
|
||||
#[error(transparent)]
|
||||
IO(#[from] std::io::Error),
|
||||
|
||||
#[error(transparent)]
|
||||
ParserError(#[from] ical::parser::ParserError),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user