예제 #1
0
        public IActionResult SetMatch(int channelId, int templateId, int channelType)
        {
            _tempApp.SetMatch(channelId, templateId, channelType);
            var ret    = _tempApp.MatchList();
            var result = new ResultAdaptDto();

            result.data.Add("list", ret.matchs);
            return(Data(result));
        }
예제 #2
0
 public IActionResult SetMatch(int channelId, int templateChannelId, int templateContentId)
 {
     _tempApp.SetMatch(channelId, templateChannelId, templateContentId);
     return(Success());
 }