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

Feature/pdf embed logo #185

Merged
merged 1 commit into from
Feb 2, 2024
Merged
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 @@ -1012,8 +1012,6 @@ public class LogoConfig<T>
{
private readonly CommonLinkUtility _commonLinkUtility;

private readonly FileUtility _fileUtility;

private readonly TenantLogoHelper _tenantLogoHelper;

private Configuration<T> _configuration;
Expand All @@ -1022,10 +1020,7 @@ public string Image
{
get
{
var fillingForm = _fileUtility.CanWebRestrictedEditing(_configuration.Document.Title);

return _configuration.EditorType == EditorType.Embedded
|| fillingForm
? _commonLinkUtility.GetFullAbsolutePath(_tenantLogoHelper.GetLogo(WhiteLabelLogoType.DocsEditorEmbed).Result)
: _commonLinkUtility.GetFullAbsolutePath(_tenantLogoHelper.GetLogo(WhiteLabelLogoType.DocsEditor).Result);
}
Expand Down Expand Up @@ -1055,12 +1050,10 @@ public string Url

public LogoConfig(
CommonLinkUtility commonLinkUtility,
TenantLogoHelper tenantLogoHelper,
FileUtility fileUtility)
TenantLogoHelper tenantLogoHelper)
{
_commonLinkUtility = commonLinkUtility;
_tenantLogoHelper = tenantLogoHelper;
_fileUtility = fileUtility;
}

internal void SetConfiguration(Configuration<T> configuration)
Expand Down
Loading