Callable
-
Gets the
ProjectManagementservice for the default app or a given app.admin.projectManagement()can be called with no arguments to access the default app'sProjectManagementservice, or asadmin.projectManagement(app)to access theProjectManagementservice associated with a specific app.Parameters
-
Optional app: App
Optional app whose
ProjectManagementservice to return. If not provided, the defaultProjectManagementservice will be returned. *
Returns ProjectManagement
The default
ProjectManagementservice if no app is provided or theProjectManagementservice associated with the provided app. -


Gets the
ProjectManagementservice for the default app or a given app.admin.projectManagement()can be called with no arguments to access the default app'sProjectManagementservice, or asadmin.projectManagement(app)to access theProjectManagementservice associated with a specific app.// Get the ProjectManagement service for the default app var defaultProjectManagement = admin.projectManagement();// Get the ProjectManagement service for a given app var otherProjectManagement = admin.projectManagement(otherApp);