-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(user) : upload image fix with public read (#97)
* fix(user) : upload image fix with public read * fix(search graph ) : search with pagination * fix(User) : email reset now is with email dto
- Loading branch information
1 parent
a92331e
commit ea611cb
Showing
13 changed files
with
83 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
AnalysisData/AnalysisData/Dtos/GraphDto/NodeDto/PaginationSearchDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using AnalysisData.Models.GraphModel.Node; | ||
|
||
namespace AnalysisData.Dtos.GraphDto.NodeDto; | ||
|
||
public class PaginationSearchDto | ||
{ | ||
public List<PaginationNodeDto> Items { get; set; } | ||
public int PageIndex { get; set; } | ||
public int TotalItems { get; set; } | ||
|
||
public PaginationSearchDto(List<PaginationNodeDto> items, int pageIndex, int totalItems) | ||
{ | ||
Items = items; | ||
PageIndex = pageIndex; | ||
TotalItems = totalItems; | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
AnalysisData/AnalysisData/Dtos/UserDto/PasswordDto/EmailForResetPasswordDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace AnalysisData.Dtos.UserDto.PasswordDto; | ||
|
||
public class EmailForResetPasswordDto | ||
{ | ||
public string Email { get; set; } | ||
} |
5 changes: 3 additions & 2 deletions
5
...nalysisData/Services/GraphService/GraphServices/Search/Abstraction/IGraphSearchService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
using System.Security.Claims; | ||
using AnalysisData.Dtos.GraphDto.NodeDto; | ||
using AnalysisData.Models.GraphModel.Node; | ||
|
||
namespace AnalysisData.Services.GraphService.GraphServices.Search.Abstraction; | ||
|
||
public interface IGraphSearchService | ||
{ | ||
Task<IEnumerable<EntityNode>> SearchInEntityNodeNameAsync(ClaimsPrincipal claimsPrincipal, string inputSearch, | ||
string type); | ||
Task<PaginationSearchDto> SearchInEntityNodeNameAsync(ClaimsPrincipal claimsPrincipal, string inputSearch, | ||
string type,int pageIndex, int pageSize ); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters