athrainsky 1 år sedan
förälder
incheckning
1029959870

+ 1 - 1
src/main/kotlin/com/swagger/rest/models/Platform.kt

@@ -7,7 +7,7 @@ import jakarta.persistence.*
 class Platform {
     @Id
     @Column(name = "platform_id")
-    @GeneratedValue(strategy = GenerationType.AUTO)
+    @GeneratedValue(strategy = GenerationType.IDENTITY)
     var id: Long = 0
 
     @Column(name = "name", length = 100)

+ 1 - 1
src/main/kotlin/com/swagger/rest/models/Project.kt

@@ -9,7 +9,7 @@ import jakarta.persistence.*
 class Project {
     @Id
     @Column(name = "project_id")
-    @GeneratedValue(strategy = GenerationType.AUTO)
+    @GeneratedValue(strategy = GenerationType.IDENTITY)
     var id: Long = 0
 
     @Column(name = "name", length = 100)

+ 1 - 1
src/main/kotlin/com/swagger/rest/models/User.kt

@@ -7,7 +7,7 @@ import jakarta.persistence.*
 class User {
     @Id
     @Column(name = "user_id")
-    @GeneratedValue(strategy = GenerationType.AUTO)
+    @GeneratedValue(strategy = GenerationType.IDENTITY)
     var id: Long = 0
 
     @Column(name = "username", length = 100)

+ 50 - 5
swagger3 project.yml

@@ -266,7 +266,16 @@ paths:
               schema:
                 type: array
                 items: 
-                  $ref: '#/components/schemas/User'
+                  properties:
+                    id:
+                      type: integer
+                      example: 1
+                    username:
+                      type: string
+                      example: abi
+                    name:
+                      type: string
+                      example: abidzar
         401:
           $ref: '#/components/responses/UnauthorizedError'
       security: 
@@ -300,7 +309,16 @@ paths:
           content:
             application/json:
               schema:
-                $ref: '#/components/schemas/User'
+                  properties:
+                    id:
+                      type: integer
+                      example: 1
+                    username:
+                      type: string
+                      example: abi
+                    name:
+                      type: string
+                      example: abidzar
         400:
           $ref: '#/components/responses/400'
         401:
@@ -326,7 +344,16 @@ paths:
           content:
             application/json:
               schema:
-                $ref: '#/components/schemas/User'
+                  properties:
+                    id:
+                      type: integer
+                      example: 1
+                    username:
+                      type: string
+                      example: abi
+                    name:
+                      type: string
+                      example: abidzar
         401:
           $ref: '#/components/responses/UnauthorizedError'
         404:
@@ -361,7 +388,16 @@ paths:
           content:
             application/json:
               schema:
-                $ref: '#/components/schemas/User'
+                  properties:
+                    id:
+                      type: integer
+                      example: 1
+                    username:
+                      type: string
+                      example: abi
+                    name:
+                      type: string
+                      example: abidzar
         400:
           $ref: '#/components/responses/400'
         401:
@@ -420,7 +456,16 @@ paths:
           content:
             application/json:
               schema:
-                $ref: '#/components/schemas/User'
+                  properties:
+                    id:
+                      type: integer
+                      example: 1
+                    username:
+                      type: string
+                      example: abi
+                    name:
+                      type: string
+                      example: abidzar
         400:
           $ref: '#/components/responses/400'
         401: