mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
Sa-14 added RefreshTokensRepository
This commit is contained in:
parent
5679b2837d
commit
4102312fe9
@ -0,0 +1,8 @@
|
||||
using ShoppingAssistantApi.Domain.Entities;
|
||||
|
||||
namespace ShoppingAssistantApi.Application.IRepositories;
|
||||
|
||||
public interface IRefreshTokensRepository : IBaseRepository<RefreshToken>
|
||||
{
|
||||
|
||||
}
|
10
ShoppingAssistantApi.Domain/Entities/RefreshToken.cs
Normal file
10
ShoppingAssistantApi.Domain/Entities/RefreshToken.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using ShoppingAssistantApi.Domain.Common;
|
||||
|
||||
namespace ShoppingAssistantApi.Domain.Entities;
|
||||
|
||||
public class RefreshToken : EntityBase
|
||||
{
|
||||
public string Token { get; set; }
|
||||
|
||||
public DateTime ExpiryDateUTC { get; set; }
|
||||
}
|
@ -13,6 +13,7 @@ public static class RepositoriesExtention
|
||||
|
||||
services.AddScoped<IRolesRepository, RolesRepository>();
|
||||
services.AddScoped<IUsersRepository, UsersRepository>();
|
||||
services.AddScoped<IRefreshTokensRepository, RefreshTokensRepository>();
|
||||
services.AddScoped<IWishlistsRepository, WishlistsRepository>();
|
||||
services.AddScoped<IMessagesRepository, MessagesRepository>();
|
||||
|
||||
|
@ -0,0 +1,10 @@
|
||||
using ShoppingAssistantApi.Application.IRepositories;
|
||||
using ShoppingAssistantApi.Domain.Entities;
|
||||
using ShoppingAssistantApi.Persistance.Database;
|
||||
|
||||
namespace ShoppingAssistantApi.Persistance.Repositories;
|
||||
|
||||
public class RefreshTokensRepository : BaseRepository<RefreshToken>, IRefreshTokensRepository
|
||||
{
|
||||
public RefreshTokensRepository(MongoDbContext db) : base(db, "RefreshTokens") { }
|
||||
}
|
Loading…
Reference in New Issue
Block a user