Fixing that Orchard.Email Workflows classes weren't actually under the corresponding feature

This commit is contained in:
Lombiq
2015-05-20 00:27:57 +02:00
parent 82602369c6
commit 15ccba2b81
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ namespace Orchard.Email.Activities {
void Enqueue(string message, object parameters, int priority);
}
[OrchardSuppressDependency("Orchard.Email.Workflows")]
[OrchardFeature("Orchard.Email.Workflows")]
public class EmailActivity : Task {
private readonly IMessageService _messageService;
private readonly IJobsQueueService _jobsQueueService;

View File

@@ -10,7 +10,7 @@ using Orchard.Localization;
namespace Orchard.Email.Forms {
[OrchardSuppressDependency("Orchard.Email.Workflows")]
[OrchardFeature("Orchard.Email.Workflows")]
public class EmailForm : Component, IFormProvider {
private readonly IFeatureManager _featureManager;
protected dynamic New { get; set; }