Fix some routes not working (#566)

This commit is contained in:
triphora
2023-03-23 12:39:46 -04:00
committed by GitHub
parent b91ec48178
commit 7605df1bd9
5 changed files with 8 additions and 17 deletions

View File

@@ -24,8 +24,6 @@ pub fn config(cfg: &mut web::ServiceConfig) {
.service(join_team)
.service(remove_team_member),
);
cfg.service(web::scope("project").service(team_members_get_project));
}
#[get("{id}/members")]