Skip to content

Commit

Permalink
fix: userSource field
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Jun 26, 2024
1 parent b4ee1b7 commit 2bfd103
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class PublicConfigurationDTO(
val postHogApiKey: String? = properties.postHog.apiKey
val postHogHost: String? = properties.postHog.host
val contentDeliveryConfigured: Boolean = properties.contentDelivery.publicUrlPrefix != null
val userSourceField: Boolean = properties.userSourceField
val slack: SlackDTO =
SlackDTO(
enabled = (
Expand Down
33 changes: 17 additions & 16 deletions webapp/src/service/apiSchema.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1980,10 +1980,10 @@ export interface components {
convertPlaceholdersToIcu: boolean;
};
ImportSettingsModel: {
/** @description If true, placeholders from other formats will be converted to ICU when possible */
convertPlaceholdersToIcu: boolean;
/** @description If true, key descriptions will be overridden by the import */
overrideKeyDescriptions: boolean;
/** @description If true, placeholders from other formats will be converted to ICU when possible */
convertPlaceholdersToIcu: boolean;
};
/** @description User who created the comment */
SimpleUserAccountModel: {
Expand Down Expand Up @@ -2155,11 +2155,11 @@ export interface components {
expiresAt?: number;
/** Format: int64 */
lastUsedAt?: number;
description: string;
/** Format: int64 */
createdAt: number;
/** Format: int64 */
updatedAt: number;
description: string;
};
SetOrganizationRoleDto: {
roleType: "MEMBER" | "OWNER";
Expand Down Expand Up @@ -2297,15 +2297,15 @@ export interface components {
key: string;
/** Format: int64 */
id: number;
projectName: string;
userFullName?: string;
username?: string;
/** Format: int64 */
projectId: number;
projectName: string;
/** Format: int64 */
expiresAt?: number;
/** Format: int64 */
lastUsedAt?: number;
/** Format: int64 */
projectId: number;
username?: string;
description: string;
scopes: string[];
};
Expand Down Expand Up @@ -3502,6 +3502,7 @@ export interface components {
postHogApiKey?: string;
postHogHost?: string;
contentDeliveryConfigured: boolean;
userSourceField: boolean;
slack: components["schemas"]["SlackDTO"];
};
SlackDTO: {
Expand Down Expand Up @@ -3607,20 +3608,20 @@ export interface components {
name: string;
/** Format: int64 */
id: number;
baseTranslation?: string;
translation?: string;
description?: string;
baseTranslation?: string;
namespace?: string;
description?: string;
};
KeySearchSearchResultModel: {
view?: components["schemas"]["KeySearchResultView"];
name: string;
/** Format: int64 */
id: number;
baseTranslation?: string;
translation?: string;
description?: string;
baseTranslation?: string;
namespace?: string;
description?: string;
};
PagedModelKeySearchSearchResultModel: {
_embedded?: {
Expand Down Expand Up @@ -4170,11 +4171,11 @@ export interface components {
expiresAt?: number;
/** Format: int64 */
lastUsedAt?: number;
description: string;
/** Format: int64 */
createdAt: number;
/** Format: int64 */
updatedAt: number;
description: string;
};
PagedModelOrganizationModel: {
_embedded?: {
Expand Down Expand Up @@ -4303,15 +4304,15 @@ export interface components {
permittedLanguageIds?: number[];
/** Format: int64 */
id: number;
projectName: string;
userFullName?: string;
username?: string;
/** Format: int64 */
projectId: number;
projectName: string;
/** Format: int64 */
expiresAt?: number;
/** Format: int64 */
lastUsedAt?: number;
/** Format: int64 */
projectId: number;
username?: string;
description: string;
scopes: string[];
};
Expand Down

0 comments on commit 2bfd103

Please sign in to comment.