Files
mixtape/zero.Web/Controllers/TranslationsController.cs
T
2021-05-04 17:23:52 +02:00

26 lines
860 B
C#

using Microsoft.AspNetCore.Mvc;
using Raven.Client.Documents.Linq;
using System.Linq;
using System.Threading.Tasks;
using zero.Core.Collections;
using zero.Core.Entities;
using zero.Core.Extensions;
using zero.Core.Identity;
namespace zero.Web.Controllers
{
[ZeroAuthorize(Permissions.Settings.Translations, PermissionsValue.Read)]
public class TranslationsController : BackofficeCollectionController<Translation, ITranslationsCollection>
{
public TranslationsController(ITranslationsCollection collection) : base(collection)
{
}
public override async Task<ListResult<Translation>> GetByQuery([FromQuery] ListBackofficeQuery<Translation> query)
{
query.SearchFor(entity => entity.Key, entity => entity.Value);
return await Collection.Query.OrderByDescending(x => x.CreatedDate).ToQueriedListAsync(query);
}
}
}