Skip to content

Commit

Permalink
Remove unneeded API addition
Browse files Browse the repository at this point in the history
  • Loading branch information
darjoo committed Aug 26, 2024
1 parent 3d7299c commit 815b2b8
Showing 1 changed file with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,6 @@ codeunit 8894 "Email Account"
{
Access = Public;

/// <summary>
/// Gets all of the email accounts registered in Business Central.
/// </summary>
/// <param name="TempEmailAccount">Out parameter holding the email accounts.</param>
procedure GetAllAccounts(var TempEmailAccount: Record "Email Account" temporary)
begin
EmailAccountImpl.GetAllAccounts(false, TempEmailAccount);
end;

/// <summary>
/// Gets all of the email accounts which implement the v2 interface registered in Business Central.
/// </summary>
/// <param name="TempEmailAccount">Out parameter holding the email accounts.</param>
procedure GetAllV2Accounts(var TempEmailAccount: Record "Email Account" temporary)
begin
EmailAccountImpl.GetAllV2Accounts(false, TempEmailAccount);
end;

/// <summary>
/// Gets all of the email accounts registered in Business Central.
/// </summary>
Expand Down

0 comments on commit 815b2b8

Please sign in to comment.