This commit is contained in:
alma 2025-05-23 17:15:46 +02:00
parent 311490f0f7
commit de8a550fc0

View File

@ -426,10 +426,16 @@ export async function POST(request: Request) {
message: 'Mission created successfully',
mission: missionResponse,
integrationStatus: {
gitRepo: !!missionResponse.giteaRepositoryUrl,
leantimeProject: !!missionResponse.leantimeProjectId,
outlineCollection: !!missionResponse.outlineCollectionId,
rocketChatChannel: !!missionResponse.rocketChatChannelId,
giteaRepository: !!missionResponse.giteaRepositoryUrl
docCollection: !!missionResponse.outlineCollectionId,
rocketChatChannel: !!missionResponse.rocketChatChannelId
},
resourceStatus: {
gitRepo: true,
leantimeProject: true,
docCollection: true,
rocketChatChannel: true
}
});
} catch (error) {