Languages config only there for display
This commit is contained in:
parent
1d308e27bd
commit
a4a95c00e2
@ -28,7 +28,6 @@ namespace Manager.Interfaces.DTO
|
||||
{
|
||||
public string ImageResourceId { get; set; }
|
||||
public string ImageSource { get; set; } // url to resource id (local) or on internet
|
||||
public int Order { get; set; } // Order to show // useless ?
|
||||
}
|
||||
|
||||
public enum MapType
|
||||
|
||||
@ -232,7 +232,7 @@ namespace ManagerService.Controllers
|
||||
section.Title = new List<TranslationDTO>();
|
||||
section.Description = new List<TranslationDTO>();
|
||||
// Preparation
|
||||
List<string> languages = _configurationService.GetById(newSection.ConfigurationId).Languages;
|
||||
List<string> languages = new List<string> { "FR", "NL", "EN", "DE" };//_configurationService.GetById(newSection.ConfigurationId).Languages;
|
||||
|
||||
var mapDTO = new MapDTO(); // For menu dto
|
||||
var sliderDTO = new SliderDTO(); // For menu dto
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user