|
@@ -1,5 +1,6 @@
|
|
|
using System.Collections.Generic;
|
|
|
using System.Threading.Tasks;
|
|
|
+using GxPress.Auth;
|
|
|
using GxPress.Repository.Interface.AppStartPage;
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
@@ -14,10 +15,12 @@ namespace GxPress.Api.AdminControllers
|
|
|
[Authorize]
|
|
|
public class AdminAppStartPageController : Controller
|
|
|
{
|
|
|
+ private readonly ILoginContext _loginContext;
|
|
|
private readonly IAppStartPageRepository appStartPageRepository;
|
|
|
- public AdminAppStartPageController(IAppStartPageRepository appStartPageRepository)
|
|
|
+ public AdminAppStartPageController(IAppStartPageRepository appStartPageRepository, ILoginContext _loginContext)
|
|
|
{
|
|
|
this.appStartPageRepository = appStartPageRepository;
|
|
|
+ this._loginContext = _loginContext;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 查询
|
|
@@ -56,6 +59,8 @@ namespace GxPress.Api.AdminControllers
|
|
|
[HttpPost]
|
|
|
public async Task<bool> InsertAsync(Entity.tede2.AppStartPage.AppStartPage model)
|
|
|
{
|
|
|
+ model.Creator = _loginContext.Name;
|
|
|
+ model.AdminId = _loginContext.AccountId;
|
|
|
return await appStartPageRepository.InsertAsync(model);
|
|
|
}
|
|
|
}
|