Skip to content

Commit

Permalink
Merge pull request #9 from Onlineberatung/feat/webhook-deleting-logic
Browse files Browse the repository at this point in the history
Feat/webhook deleting logic
  • Loading branch information
adnanalicic authored Jul 15, 2022
2 parents a9a3404 + e28a81e commit bb3a299
Show file tree
Hide file tree
Showing 13 changed files with 1,349 additions and 77 deletions.
5 changes: 5 additions & 0 deletions api/appointmentService.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,11 @@ components:
properties:
user:
type: string
bookingId:
type: long
isInitialAppointment:
type: boolean

CalcomSchedule:
type: object
properties:
Expand Down
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,32 @@
<output>target/generated-sources/userservice</output>
</configuration>
</execution>
<execution>
<id>message-service-client-model</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<configOptions>
<sourceFolder>/</sourceFolder>
<library>resttemplate</library>
<dateLibrary>java8</dateLibrary>
</configOptions>
<inputSpec>${project.basedir}/services/messageservice.yaml</inputSpec>
<generatorName>java</generatorName>
<generateApis>true</generateApis>
<generateApiTests>false</generateApiTests>
<generateModelTests>false</generateModelTests>
<apiPackage>
${project.groupId}.${project.artifactId}.messageservice.generated.web
</apiPackage>
<modelPackage>
${project.groupId}.${project.artifactId}.messageservice.generated.web.model
</modelPackage>
<output>target/generated-sources/messageservice</output>
</configuration>
</execution>
</executions>
</plugin>
<!-- Code style check -->
Expand Down
Loading

0 comments on commit bb3a299

Please sign in to comment.