https://prefect.io logo
Title
p

Pedro Martins

12/23/2020, 2:35 PM
Does the open-source UI supports team and project settings? Couldn't find a way to delete a project.
m

Mariia Kerimova

12/23/2020, 2:51 PM
Hello @Pedro Martins! I believe you can do it, refer to this doc.
p

Pedro Martins

12/23/2020, 4:20 PM
I can't see these tabs in the prefect cloud for the open-source project.
m

Mariia Kerimova

12/23/2020, 4:25 PM
oh, sorry I didn't mention that I meant interactive API
You could do something like:
query {
  project {
    id
  }
}
mutation {
  delete_project(input: { project_id: "project-UUID" }) {
    success,
  }
}
:upvote: 2
n

nicholas

12/23/2020, 4:30 PM
@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

Pedro Martins

12/23/2020, 4:31 PM
Thanks @Mariia Kerimova! I'll check that 🙂
@nicholas, good to know! I'm looking forward to the nexts versions.