Add /apps to public paths - no auth required for app access
This commit is contained in:
parent
8fbc52b054
commit
bad6ebd501
1 changed files with 2 additions and 1 deletions
|
|
@ -196,7 +196,8 @@ async fn run_axum_server(
|
||||||
.add_anonymous_path("/ws")
|
.add_anonymous_path("/ws")
|
||||||
.add_anonymous_path("/auth")
|
.add_anonymous_path("/auth")
|
||||||
.add_public_path("/static")
|
.add_public_path("/static")
|
||||||
.add_public_path("/favicon.ico"));
|
.add_public_path("/favicon.ico")
|
||||||
|
.add_public_path("/apps")); // Apps are public - no auth required
|
||||||
|
|
||||||
use crate::core::urls::ApiUrls;
|
use crate::core::urls::ApiUrls;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue