Skip to content

Commit

Permalink
Rebuild module
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Glatzer committed Jul 30, 2020
1 parent 947d86b commit e0080cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/ACME-PS/ACME-PS.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'ACME-PS.psm1'
ModuleVersion = '1.3.0'
ModuleVersion = '1.2.5'
GUID = '2DBF7E3F-F830-403A-9300-78A11C7CD00C'

CompatiblePSEditions = @("Core", "Desktop")
Expand All @@ -21,6 +21,7 @@
'System.Net.Http'
)

DefaultCommandPrefix = 'ACME'
FunctionsToExport = @(
"Disable-Account",
"Find-Account",
Expand Down
4 changes: 2 additions & 2 deletions dist/ACME-PS/ACME-PS.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -1608,8 +1608,8 @@ function New-Account {
$Contacts = @($EmailAddresses | ForEach-Object { if($_.StartsWith("mailto:")) { $_ } else { "mailto:$_" } });

$payload = @{
"TermsOfServiceAgreed"=$AcceptTOS.IsPresent;
"Contact"=$Contacts;
"termsOfServiceAgreed"=$AcceptTOS.IsPresent;
"contact"=$Contacts;
}

$url = $State.GetServiceDirectory().NewAccount;
Expand Down

0 comments on commit e0080cd

Please sign in to comment.