mirror of
https://github.com/Nutomic/ibis.git
synced 2024-12-04 08:31:09 +00:00
gitignore
This commit is contained in:
parent
0d93ac31a3
commit
47871404fd
2 changed files with 4 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
||||||
/target
|
/target
|
||||||
/.idea
|
/.idea
|
||||||
|
/.vscode
|
||||||
/assets/dist
|
/assets/dist
|
||||||
/node_modules
|
/node_modules
|
||||||
|
|
|
@ -83,9 +83,9 @@ pub fn App() -> impl IntoView {
|
||||||
<Route path="/article/:title/edit/:conflict_id?" view=EditArticle />
|
<Route path="/article/:title/edit/:conflict_id?" view=EditArticle />
|
||||||
<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 />
|
||||||
|
|
Loading…
Reference in a new issue