(input: IServiceUpsertGroup)
| 181 | } |
| 182 | |
| 183 | export async function createGroup(input: IServiceUpsertGroup) { |
| 184 | await upsertGroup(input); |
| 185 | return getGroupById(input.id, input.projectId); |
| 186 | } |
| 187 | |
| 188 | export async function updateGroup( |
| 189 | id: string, |
no test coverage detected