-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* start koreader sync effort relates to #239 * add migration * DEBUG: push unstable image * wip: api keys * wip: api key management * wip: api key management * wip: api key management table * wip: build out create api key, fix middleware permissions * i love coding on the plane * wip: locale and new permission * add migration * refactor api params, wip docs improvements * docs tweak, consume progress * adjust doc comments * oops * wip: fix weird type issues * fix drawer portable issue * stop building image * fix lints, add new option to scanner * DEBUG: push unstable image * tweak docs * messing around * stop building image * persist koreader hash * Revert "stop building image" This reverts commit 060f0b7. * update docs * wip: more localization * stop building image * fix registered device table name * use translations for api key root * adjust docs, add basic tests * update codegen * push up last nights crude effort for force rebuild * update docs * add api_key middleware test, update docs
- Loading branch information
1 parent
5935ed4
commit 4055495
Showing
144 changed files
with
4,154 additions
and
651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,5 @@ | ||
use std::sync::Arc; | ||
|
||
use axum::extract::State; | ||
use axum_macros::FromRequestParts; | ||
use stump_core::Ctx; | ||
|
||
// TODO: I don't feel like I need this module... Unless I add things to it.. | ||
pub type AppState = Arc<Ctx>; | ||
|
||
// TODO: is this how to fix the FIXME note in auth extractor? | ||
#[derive(FromRequestParts, Clone)] | ||
pub struct _AppState { | ||
#[allow(unused)] | ||
core_ctx: State<AppState>, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.