feat: 完成bbs头像功能

This commit is contained in:
陈淳
2023-12-28 20:24:49 +08:00
parent 470c908453
commit 469ec71074
15 changed files with 26 additions and 5 deletions

View File

@@ -18,5 +18,13 @@ namespace Yi.Framework.Bbs.Application.Services
{
return Task.FromResult("你好世界");
}
public List<string> GetIcon()
{
return Directory.GetFiles("wwwroot/icon").Select(x => "wwwroot/icon/"+ Path.GetFileName(x)).ToList();
}
}
}