Skip to content
Snippets Groups Projects
Commit 699ad2b2 authored by James2Tulloch's avatar James2Tulloch
Browse files

Fixed groups and previous bugs introduced

parent 976d244c
No related merge requests found
...@@ -22,7 +22,7 @@ fn rust_crud_api(_py: Python, m: &PyModule) -> PyResult<()> { ...@@ -22,7 +22,7 @@ fn rust_crud_api(_py: Python, m: &PyModule) -> PyResult<()> {
m.add_function(wrap_pyfunction!(db::users::get_all_users, m)?)?; m.add_function(wrap_pyfunction!(db::users::get_all_users, m)?)?;
m.add_function(wrap_pyfunction!(db::users::update_user, m)?)?; m.add_function(wrap_pyfunction!(db::users::update_user, m)?)?;
m.add_function(wrap_pyfunction!(db::users::delete_user, m)?)?; m.add_function(wrap_pyfunction!(db::users::delete_user, m)?)?;
m.add_function(wrap_pyfunction!(db::users::verify_user,m)?)?;
m.add_function(wrap_pyfunction!(db::groups::create_group, m)?)?; m.add_function(wrap_pyfunction!(db::groups::create_group, m)?)?;
m.add_function(wrap_pyfunction!(db::groups::get_group, m)?)?; m.add_function(wrap_pyfunction!(db::groups::get_group, m)?)?;
m.add_function(wrap_pyfunction!(db::groups::get_all_groups, m)?)?; m.add_function(wrap_pyfunction!(db::groups::get_all_groups, m)?)?;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment