1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-12-04 18:41: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 /target
/.idea /.idea
/.vscode
/assets/dist /assets/dist
/node_modules /node_modules

View file

@ -84,8 +84,8 @@ pub fn App() -> impl IntoView {
<Route path="/article/:title/actions" view=ArticleActions /> <Route path="/article/:title/actions" view=ArticleActions />
<Route path="/article/:title/diff/:hash" view=EditDiff /> <Route path="/article/:title/diff/:hash" view=EditDiff />
// TODO: use protected route, otherwise user can view // TODO: use protected route, otherwise user can view
// /article/create without login // /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/create" view=CreateArticle />
<Route path="/article/list" view=ListArticles /> <Route path="/article/list" view=ListArticles />
<Route path="/instance/:hostname" view=InstanceDetails /> <Route path="/instance/:hostname" view=InstanceDetails />