Skip to content

Commit

Permalink
[feat] Turn share to get
Browse files Browse the repository at this point in the history
  • Loading branch information
ppodolsky committed Apr 25, 2024
1 parent ce3c592 commit 844c3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async fn app() -> Result<(), Error> {
.route("/tables/:table/import/", post(tables_import))
.route("/tables/:table/sync/", post(tables_sync))
.route("/tables/:table/", get(table_ls))
.route("/tables/:table/share/:mode/", post(table_share))
.route("/tables/:table/share/:mode/", get(table_share))
.route("/tables/:table/*key", get(table_get))
.route("/tables/:table/*key", put(table_insert))
.route("/tables/:table/*key", delete(table_delete))
Expand Down

0 comments on commit 844c3e4

Please sign in to comment.