Skip to content

Commit

Permalink
Update SMTP Configuration with Google OAuth details
Browse files Browse the repository at this point in the history
  • Loading branch information
grace-rehn committed Jan 31, 2025
1 parent 2ec67cd commit ef3db96
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5448,6 +5448,8 @@ Octopus.Client.Model
{
.ctor()
Boolean EnableSsl { get; set; }
String GoogleAudience { get; set; }
String GoogleServiceAccount { get; set; }
String NewSmtpPassword { get; set; }
String SendEmailFrom { get; set; }
String SmtpHost { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5467,6 +5467,8 @@ Octopus.Client.Model
{
.ctor()
Boolean EnableSsl { get; set; }
String GoogleAudience { get; set; }
String GoogleServiceAccount { get; set; }
String NewSmtpPassword { get; set; }
String SendEmailFrom { get; set; }
String SmtpHost { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ public class SmtpConfigurationResource : Resource

[Writeable]
public SensitiveValue SmtpPassword { get; set; }

[Writeable]
public bool GoogleAudience { get; set; }

[Writeable]
public int? GoogleServiceAccount { get; set; }

[NotReadable]
[Writeable]
Expand Down

0 comments on commit ef3db96

Please sign in to comment.