diff --git a/server/application-server/openapi.yaml b/server/application-server/openapi.yaml index 2b7aa415..0c8f2307 100644 --- a/server/application-server/openapi.yaml +++ b/server/application-server/openapi.yaml @@ -254,8 +254,9 @@ components: type: string state: type: string - description: "State of the PullRequest.\r\n Does not include the state of\ - \ the merge." + description: |- + State of the PullRequest. + Does not include the state of the merge. enum: - CLOSED - OPEN @@ -409,12 +410,15 @@ components: description: Display name of the user. url: type: string - description: "Unique URL to the user's profile.\r\n Not the website a user\ - \ can set in their profile." + description: |- + Unique URL to the user's profile. + Not the website a user can set in their profile. avatarUrl: type: string - description: "URL to the user's avatar.\r\n If unavailable, a fallback can\ - \ be generated from the login, e.g. on Github:\r\n https://github.com/{login}.png" + description: |- + URL to the user's avatar. + If unavailable, a fallback can be generated from the login, e.g. on Github: + https://github.com/{login}.png type: type: string description: Type of the user. Used to distinguish between users and bots. diff --git a/webapp/src/app/core/modules/openapi/model/pull-request.ts b/webapp/src/app/core/modules/openapi/model/pull-request.ts index 9de86033..f1fa06ad 100644 --- a/webapp/src/app/core/modules/openapi/model/pull-request.ts +++ b/webapp/src/app/core/modules/openapi/model/pull-request.ts @@ -23,7 +23,7 @@ export interface PullRequest { title: string; url: string; /** - * State of the PullRequest. Does not include the state of the merge. + * State of the PullRequest. Does not include the state of the merge. */ state: PullRequest.StateEnum; additions?: number; diff --git a/webapp/src/app/core/modules/openapi/model/user.ts b/webapp/src/app/core/modules/openapi/model/user.ts index 371ca15c..8e8311bd 100644 --- a/webapp/src/app/core/modules/openapi/model/user.ts +++ b/webapp/src/app/core/modules/openapi/model/user.ts @@ -29,11 +29,11 @@ export interface User { */ name?: string; /** - * Unique URL to the user\'s profile. Not the website a user can set in their profile. + * Unique URL to the user\'s profile. Not the website a user can set in their profile. */ url: string; /** - * URL to the user\'s avatar. If unavailable, a fallback can be generated from the login, e.g. on Github: https://github.com/{login}.png + * URL to the user\'s avatar. If unavailable, a fallback can be generated from the login, e.g. on Github: https://github.com/{login}.png */ avatarUrl?: string; /**