Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

How to: assign multiple maintainers to a project

Carsten Zimmermann edited this page Mar 26, 2018 · 1 revision

When a project is created, it has only one maintainer by default (=the person submitting it).

As of March 2018, there is no UI yet to add more maintainers who would have access to a the list of applications for their projects. Until we have such a UI, manual intervention on the rails console is required:

project = Project.find 42
user = User.find_by email: '[email protected]' # nb, user must exist in the Teams App already
project.maintainers << user
Clone this wiki locally