-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
1,992 additions
and
1,985 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
10 changes: 3 additions & 7 deletions
10
CK.DB.User.UserGitLab.AuthScope/CK.DB.User.UserGitLab.AuthScope.csproj
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,17 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Description>This package adds a ScopeSetId column to CK.tUserGitLab table.</Description> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CK.DB.Auth.AuthScope" Version="21.0.0" /> | ||
<PackageReference Include="CK.DB.Auth.AuthScope" Version="22.0.0" /> | ||
<ProjectReference Include="..\CK.DB.User.UserGitLab\CK.DB.User.UserGitLab.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="**\*.sql;**\*.tql;**\*.y4" Exclude="bin\**;obj\**;CodeCakeBuilder\**;packages\**;@(EmbeddedResource)" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Properties\" /> | ||
<EmbeddedResource Include="**\*.sql;**\*.tql;**\*.y4" /> | ||
</ItemGroup> | ||
</Project> |
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,19 +1,18 @@ | ||
using CK.Core; | ||
using System; | ||
|
||
namespace CK.DB.User.UserGitLab.AuthScope | ||
namespace CK.DB.User.UserGitLab.AuthScope; | ||
|
||
/// <summary> | ||
/// Extends <see cref="UserGitLab.IUserGitLabInfo"/> with ScopeSet identifier. | ||
/// </summary> | ||
public interface IUserGitLabInfo : UserGitLab.IUserGitLabInfo | ||
{ | ||
/// <summary> | ||
/// Extends <see cref="UserGitLab.IUserGitLabInfo"/> with ScopeSet identifier. | ||
/// Gets or sets the scope set identifier. | ||
/// Note that the ScopeSetId is intrinsic: a new ScopeSetId is acquired | ||
/// and set only when a new UserGitLab is created (by copy from | ||
/// the default one - the ScopeSet of the UserGitLab 0). | ||
/// </summary> | ||
public interface IUserGitLabInfo : UserGitLab.IUserGitLabInfo | ||
{ | ||
/// <summary> | ||
/// Gets or sets the scope set identifier. | ||
/// Note that the ScopeSetId is intrinsic: a new ScopeSetId is acquired | ||
/// and set only when a new UserGitLab is created (by copy from | ||
/// the default one - the ScopeSet of the UserGitLab 0). | ||
/// </summary> | ||
int ScopeSetId { get; set; } | ||
} | ||
int ScopeSetId { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Description>This package defines tUserGitLab table.</Description> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CK.DB.Auth" Version="21.0.0" /> | ||
<PackageReference Include="CK.DB.Auth" Version="22.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="**\*.sql;**\*.tql;**\*.y4" Exclude="bin\**;obj\**;@(EmbeddedResource)" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Properties\" /> | ||
<EmbeddedResource Include="**\*.sql;**\*.tql;**\*.y4" /> | ||
</ItemGroup> | ||
</Project> |
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,16 +1,14 @@ | ||
using CK.Core; | ||
|
||
namespace CK.DB.User.UserGitLab | ||
namespace CK.DB.User.UserGitLab; | ||
|
||
/// <summary> | ||
/// Holds information stored for a GitLab user. | ||
/// </summary> | ||
public interface IUserGitLabInfo : IPoco | ||
{ | ||
/// <summary> | ||
/// Holds information stored for a GitLab user. | ||
/// Gets or sets the GitLab account identifier. | ||
/// </summary> | ||
public interface IUserGitLabInfo : IPoco | ||
{ | ||
/// <summary> | ||
/// Gets or sets the GitLab account identifier. | ||
/// </summary> | ||
string GitLabAccountId { get; set; } | ||
} | ||
|
||
string GitLabAccountId { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
using CK.Core; | ||
|
||
namespace CK.DB.User.UserGitLab | ||
namespace CK.DB.User.UserGitLab; | ||
|
||
/// <summary> | ||
/// Package that adds GitLab authentication support for users. | ||
/// </summary> | ||
[SqlPackage( Schema = "CK", ResourcePath = "Res" )] | ||
[Versions( "1.0.0" )] | ||
[SqlObjectItem( "transform:vUserAuthProvider" )] | ||
public class Package : SqlPackage | ||
{ | ||
/// <summary> | ||
/// Package that adds GitLab authentication support for users. | ||
/// </summary> | ||
[SqlPackage( Schema = "CK", ResourcePath = "Res" )] | ||
[Versions("1.0.0")] | ||
[SqlObjectItem( "transform:vUserAuthProvider" )] | ||
public class Package : SqlPackage | ||
void StObjConstruct( Actor.Package actorPackage, Auth.Package authPackage ) | ||
{ | ||
void StObjConstruct( Actor.Package actorPackage, Auth.Package authPackage ) | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.