-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from MahdiyarGHD/develop
feat: Implemented reset password tokens
- Loading branch information
Showing
18 changed files
with
1,083 additions
and
147 deletions.
There are no files selected for viewing
618 changes: 618 additions & 0 deletions
618
...ices.IdentityMicroservice.Clients/Connected Services/IdentityGeneratedServices/OpenAPI.cs
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<Platforms>AnyCPU;x64;x86</Platforms> | ||
<Authors>EasyMicroservices</Authors> | ||
<IsPackable>true</IsPackable> | ||
<Version>0.0.0.6</Version> | ||
<Version>0.0.0.9</Version> | ||
<Description>client generated code.</Description> | ||
<Copyright>[email protected]</Copyright> | ||
<PackageTags>microservice,Identity,Identity,client</PackageTags> | ||
|
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
14 changes: 14 additions & 0 deletions
14
...dentityMicroservice.Domain/Contracts/Requests/ConsumeResetPasswordTokenRequestContract.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,14 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace EasyMicroservices.IdentityMicroservice.Contracts.Requests | ||
{ | ||
public class ConsumeResetPasswordTokenRequestContract | ||
{ | ||
public string Token { get; set; } | ||
public string Password { get; set; } | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
...entityMicroservice.Domain/Contracts/Requests/GenerateResetPasswordTokenRequestContract.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,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace EasyMicroservices.IdentityMicroservice.Contracts.Requests | ||
{ | ||
public class GenerateResetPasswordTokenRequestContract | ||
{ | ||
public string WhiteLabelKey { get; set; } | ||
public long ExpireTimeInSeconds { get; set; } | ||
public string UserName { get; set; } | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...entityMicroservice.Domain/Contracts/Requests/ValidateResetPasswordTokenRequestContract.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,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace EasyMicroservices.IdentityMicroservice.Contracts.Requests | ||
{ | ||
public class ValidateResetPasswordTokenRequestContract | ||
{ | ||
public string Token { get; set; } | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...tityMicroservice.Domain/Contracts/Responses/GenerateResetPasswordTokenResponseContract.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,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace EasyMicroservices.IdentityMicroservice.Contracts.Responses | ||
{ | ||
public class GenerateResetPasswordTokenResponseContract | ||
{ | ||
public string Token { get; set; } | ||
} | ||
} |
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
Oops, something went wrong.