Does the open-source UI supports team and project ...
# prefect-ui
p
Does the open-source UI supports team and project settings? Couldn't find a way to delete a project.
m
Hello @Pedro Martins! I believe you can do it, refer to this doc.
p
I can't see these tabs in the prefect cloud for the open-source project.
m
oh, sorry I didn't mention that I meant interactive API
You could do something like:
Copy code
query {
  project {
    id
  }
}
mutation {
  delete_project(input: { project_id: "project-UUID" }) {
    success,
  }
}
upvote 2
n
@Pedro Martins the project management pages should be available in Server soon! We're working on overhauling nav in general to better expose Server-utilities (among many other things); however, Server doesn't ship with any sort of auth so team management (and API tokens, secrets, etc) will not be available with this update, since those require additional pieces of infrastructure. If you're interested in those, I'd encourage you to check out Prefect Cloud 🙂
🙌 2
p
Thanks @Mariia Kerimova! I'll check that 🙂
@nicholas, good to know! I'm looking forward to the nexts versions.