opf-openproject
- Description:
Elevate team productivity with OpenProject, the ultimate web-based project management tool. Seamlessly plan, collaborate, and track your projects with features tailored for agile, scrum, and budgeting excellence.
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createOpfOpenprojectInstance(context, body) → {OpfOpenproject}
- Description:
Create a new OpenProject instance
Example
import { Context } from '@osaas/client-core';
import { createOpfOpenprojectInstance } from '@osaas/client-services';
const ctx = new Context();
const body: OpfOpenprojectConfig = { name: 'myinstance', ... };
const instance = await createOpfOpenprojectInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
OpfOpenprojectConfig | Service instance configuration |
Returns:
- Service instance
- Type
- OpfOpenproject
(async, static) getOpfOpenprojectInstance(context, name) → {OpfOpenproject}
- Description:
Get a OpenProject instance
Example
import { Context } from '@osaas/client-core';
import { getOpfOpenprojectInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getOpfOpenprojectInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the service to be retrieved |
Returns:
- Service instance
- Type
- OpfOpenproject
(async, static) removeOpfOpenprojectInstance(context, name)
- Description:
Remove a OpenProject instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the service to be removed |