-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
OSOE-60: .NET 6 and Orchard Core 1.3 upgrade
- Loading branch information
Showing
27 changed files
with
543 additions
and
572 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
namespace Lombiq.Privacy.Constants | ||
namespace Lombiq.Privacy.Constants; | ||
|
||
public static class FeatureNames | ||
{ | ||
public static class FeatureNames | ||
{ | ||
public const string Module = "Lombiq.Privacy"; | ||
public const string Module = "Lombiq.Privacy"; | ||
|
||
public const string ConsentBanner = Module + "." + nameof(ConsentBanner); | ||
public const string RegistrationConsent = Module + "." + nameof(RegistrationConsent); | ||
public const string FormConsent = Module + "." + nameof(FormConsent); | ||
} | ||
public const string ConsentBanner = Module + "." + nameof(ConsentBanner); | ||
public const string RegistrationConsent = Module + "." + nameof(RegistrationConsent); | ||
public const string FormConsent = Module + "." + nameof(FormConsent); | ||
} |
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,7 +1,6 @@ | ||
namespace Lombiq.Privacy.Constants | ||
namespace Lombiq.Privacy.Constants; | ||
|
||
public static class GroupIds | ||
{ | ||
public static class GroupIds | ||
{ | ||
public const string PrivacySettings = nameof(PrivacySettings); | ||
} | ||
public const string PrivacySettings = nameof(PrivacySettings); | ||
} |
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,9 +1,8 @@ | ||
namespace Lombiq.Privacy.Constants | ||
namespace Lombiq.Privacy.Constants; | ||
|
||
public static class ResourceNames | ||
{ | ||
public static class ResourceNames | ||
{ | ||
private const string Prefix = "Lombiq.Privacy"; | ||
private const string Prefix = "Lombiq.Privacy"; | ||
|
||
public const string ConsentBanner = Prefix + "." + nameof(ConsentBanner); | ||
} | ||
public const string ConsentBanner = Prefix + "." + nameof(ConsentBanner); | ||
} |
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,9 @@ | ||
namespace Lombiq.Privacy.Constants | ||
namespace Lombiq.Privacy.Constants; | ||
|
||
public static class TypeNames | ||
{ | ||
public static class TypeNames | ||
{ | ||
public const string PrivacyConsentCheckbox = nameof(PrivacyConsentCheckbox); | ||
public const string PrivacyConsentBannerSettings = nameof(PrivacyConsentBannerSettings); | ||
public const string PrivacyConsentCheckboxSettings = nameof(PrivacyConsentCheckboxSettings); | ||
public const string PrivacyRegistrationConsentSettings = nameof(PrivacyRegistrationConsentSettings); | ||
} | ||
public const string PrivacyConsentCheckbox = nameof(PrivacyConsentCheckbox); | ||
public const string PrivacyConsentBannerSettings = nameof(PrivacyConsentBannerSettings); | ||
public const string PrivacyConsentCheckboxSettings = nameof(PrivacyConsentCheckboxSettings); | ||
public const string PrivacyRegistrationConsentSettings = nameof(PrivacyRegistrationConsentSettings); | ||
} |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
using Lombiq.Privacy.Activities; | ||
using OrchardCore.Workflows.Display; | ||
|
||
namespace Lombiq.Privacy.Drivers | ||
namespace Lombiq.Privacy.Drivers; | ||
|
||
public class ValidatePrivacyConsentCheckboxTaskDisplayDriver : ActivityDisplayDriver<ValidatePrivacyConsentCheckboxTask> | ||
{ | ||
public class ValidatePrivacyConsentCheckboxTaskDisplayDriver : ActivityDisplayDriver<ValidatePrivacyConsentCheckboxTask> | ||
{ | ||
} | ||
} |
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.