or
List<TemplateDefinition> templates = await _templateDefinitionManager.GetAsync("templateName");
Is it possible to do so?
public interface ITemplateDefinitionManager { [ItemNotNull] Task<TemplateDefinition> GetAsync([NotNull] string name);
[ItemNotNull]
Task<IReadOnlyList<TemplateDefinition>> GetAllAsync();
Task<TemplateDefinition?> GetOrNullAsync(string name);
}
Right now templateDefinitionManager only get by name.
Hi, I want to add accessibility elements and make the front end angular more accessible. Please let me know how I can modify the elements without injecting with JS after the page is loaded. I want to modify the source code for lepton x theme.
ABP Framework version:** v6.0.0
