1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-12-04 08:31:09 +00:00

gitignore

This commit is contained in:
Felix Ableitner 2024-11-18 22:56:44 +01:00
parent 0d93ac31a3
commit 47871404fd
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
/target
/.idea
/.vscode
/assets/dist
/node_modules

View file

@ -85,7 +85,7 @@ pub fn App() -> impl IntoView {
<Route path="/article/:title/diff/:hash" view=EditDiff />
// TODO: use protected route, otherwise user can view
// /article/create without login
//https://github.com/leptos-rs/leptos/blob/leptos_0.7/examples/router/src/lib.rs#L51
// https://github.com/leptos-rs/leptos/blob/leptos_0.7/examples/router/src/lib.rs#L51
<Route path="/article/create" view=CreateArticle />
<Route path="/article/list" view=ListArticles />
<Route path="/instance/:hostname" view=InstanceDetails />