-
Notifications
You must be signed in to change notification settings - Fork 5
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 #18 from Ali-YousefiTelori/develop
Add GetAllPermissionsBy
- Loading branch information
Showing
14 changed files
with
231 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,6 @@ jobs: | |
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: | | ||
3.1.x | ||
5.0.x | ||
6.0.x | ||
7.0.x | ||
- name: Install Android | ||
run: dotnet workload install android | ||
|
@@ -28,9 +25,7 @@ jobs: | |
workspace: "./src/CSharp/EasyMicroservices.AuthenticationsMicroservice.sln" | ||
- name: Test | ||
run: | | ||
dotnet test ./src/CSharp/EasyMicroservices.AuthenticationsMicroservice.sln -f netcoreapp3.1 | ||
dotnet test ./src/CSharp/EasyMicroservices.AuthenticationsMicroservice.sln -f net6.0 | ||
dotnet test ./src/CSharp/EasyMicroservices.AuthenticationsMicroservice.sln -f net5.0 | ||
dotnet test ./src/CSharp/EasyMicroservices.AuthenticationsMicroservice.sln -f net7.0 | ||
- name: Commit files | ||
if: steps.format.outputs.has-changes == 'true' | ||
uses: EndBug/[email protected] | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<Platforms>AnyCPU;x64;x86</Platforms> | ||
<Authors>EasyMicroservices</Authors> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Version>0.0.0.9</Version> | ||
<Version>0.0.0.10</Version> | ||
<Description>client generated code.</Description> | ||
<Copyright>[email protected]</Copyright> | ||
<PackageTags>microservice,auth,authentication,client</PackageTags> | ||
|
11 changes: 11 additions & 0 deletions
11
...AuthenticationsMicroservice.Domain/Contracts/Requests/ServicePermissionRequestContract.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,11 @@ | ||
namespace EasyMicroservices.AuthenticationsMicroservice.Contracts.Requests | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public class ServicePermissionRequestContract | ||
{ | ||
public string RoleName { get; set; } | ||
public string MicroserviceName { get; set; } | ||
} | ||
} |
Oops, something went wrong.