Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: project extra fields #239

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ public class Project {
private String sourceLanguageId;
private List<String> targetLanguageIds;
private String name;
private String cname;
private String identifier;
private String description;
private String visibility;
private String logo;
private String background;
private boolean isExternal;
Expand All @@ -30,5 +32,6 @@ public class Project {
private Date lastActivity;
private Language sourceLanguage;
private List<Language> targetLanguages;
private String webUrl;

}
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,21 @@ public class ProjectSettings extends Project {

private Integer clientOrganizationId;
private Integer translateDuplicates;
private Integer tagsDetection;
private Boolean glossaryAccess;
private Boolean isMtAllowed;
private Boolean taskBasedAccessControl;
private Boolean hiddenStringsProofreadersAccess;
private Boolean autoSubstitution;
private Boolean exportTranslatedOnly;
private Boolean skipTranslatedOnly;
private Boolean skipUntranslatedStrings;
private Boolean skipUntranslatedFiles;
private Boolean exportApprovedOnly;
private Integer exportWithMinApprovalsCount;
private boolean autoTranslateDialects;
private boolean useGlobalTm;
private Boolean showTmSuggestionsDialects;
private TmContextType tmContextType;
private Boolean normalizePlaceholder;
private Boolean saveMetaInfoInSource;
Expand All @@ -47,5 +50,7 @@ public class ProjectSettings extends Project {
private NotificationSettings notificationSettings;
@JsonDeserialize(using = EmptyArrayToNullDeserializer.class)
private TmPenalties tmPenalties;
private Integer defaultTmId;
private Integer defaultGlossaryId;

}
Loading