Changes to method names per request

This commit is contained in:
Mitchel Sellers
2019-05-19 21:05:10 -05:00
parent 86adae19c1
commit 4d55c68e4b
7 changed files with 14 additions and 14 deletions

View File

@ -58,7 +58,7 @@ namespace Oqtane.Services
return themes.OrderBy(item => item.Name).ToList();
}
public Dictionary<string, string> CalculateSelectableThemes(List<Theme> themes)
public Dictionary<string, string> GetThemeTypes(List<Theme> themes)
{
var selectableThemes = new Dictionary<string, string>();
foreach (Theme theme in themes)
@ -71,7 +71,7 @@ namespace Oqtane.Services
return selectableThemes;
}
public Dictionary<string, string> CalculateSelectablePaneLayouts(List<Theme> themes)
public Dictionary<string, string> GetPaneLayoutTypes(List<Theme> themes)
{
var selectablePaneLayouts = new Dictionary<string, string>();
foreach (Theme theme in themes)
@ -84,7 +84,7 @@ namespace Oqtane.Services
return selectablePaneLayouts;
}
public Dictionary<string, string> CalculateSelectableContainers(List<Theme> themes)
public Dictionary<string, string> GetContainerTypes(List<Theme> themes)
{
var selectableContainers = new Dictionary<string, string>();
foreach (Theme theme in themes)