-
Notifications
You must be signed in to change notification settings - Fork 751
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 #5878 from dnnsoftware/release/9.13.1
Merged `release/9.13.1` into `master` to release `v9.13.1`
- Loading branch information
Showing
157 changed files
with
9,365 additions
and
10,182 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
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
nodeLinker: node-modules | ||
compressionLevel: mixed | ||
|
||
yarnPath: .yarn/releases/yarn-3.4.1.cjs | ||
nodeLinker: node-modules |
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
2 changes: 1 addition & 1 deletion
2
DNN Platform/Connectors/GoogleAnalytics/GoogleAnalyticsConnector.dnn
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
2 changes: 1 addition & 1 deletion
2
DNN Platform/Connectors/GoogleAnalytics4/GoogleAnalytics4Connector.dnn
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
2 changes: 1 addition & 1 deletion
2
DNN Platform/Connectors/GoogleTagManager/GoogleTagManagerConnector.dnn
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
21 changes: 21 additions & 0 deletions
21
DNN Platform/DotNetNuke.Abstractions/Security/Permissions/IFolderPermissionInfo.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,21 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information | ||
|
||
namespace DotNetNuke.Abstractions.Security.Permissions; | ||
|
||
/// <summary>Information about the application of an instance of a folder permission.</summary> | ||
public interface IFolderPermissionInfo : IPermissionInfo | ||
{ | ||
/// <summary>Gets or sets the ID of the folder permission.</summary> | ||
int FolderPermissionId { get; set; } | ||
|
||
/// <summary>Gets or sets the folder ID to which the permission applies.</summary> | ||
int FolderId { get; set; } | ||
|
||
/// <summary>Gets or sets the path of the folder to which the permission applies.</summary> | ||
string FolderPath { get; set; } | ||
|
||
/// <summary>Gets or sets the portal ID of the folder to which the permission applies.</summary> | ||
int PortalId { get; set; } | ||
} |
24 changes: 24 additions & 0 deletions
24
DNN Platform/DotNetNuke.Abstractions/Security/Permissions/IPermissionDefinitionInfo.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,24 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information | ||
|
||
namespace DotNetNuke.Abstractions.Security.Permissions; | ||
|
||
/// <summary>Information about the definition of a permission.</summary> | ||
public interface IPermissionDefinitionInfo | ||
{ | ||
/// <summary>Gets or sets the Module Definition ID.</summary> | ||
public int ModuleDefId { get; set; } | ||
|
||
/// <summary>Gets or sets the Permission Code.</summary> | ||
public string PermissionCode { get; set; } | ||
|
||
/// <summary>Gets or sets the Permission ID.</summary> | ||
public int PermissionId { get; set; } | ||
|
||
/// <summary>Gets or sets the Permission Key.</summary> | ||
public string PermissionKey { get; set; } | ||
|
||
/// <summary>Gets or sets the Permission Name.</summary> | ||
public string PermissionName { get; set; } | ||
} |
Oops, something went wrong.