#21167: Fixing that Roles tried to access permissions of a feature before its migrations could run.

Work Item: 21167
This commit is contained in:
Lombiq
2015-01-26 19:08:57 +01:00
committed by Zoltán Lehóczky
parent 9b882ac313
commit 2187f51d48

View File

@@ -25,10 +25,10 @@ namespace Orchard.Roles {
public ILogger Logger { get; set; }
void IFeatureEventHandler.Installing(Feature feature) {
AddDefaultRolesForFeature(feature);
}
void IFeatureEventHandler.Installed(Feature feature) {
AddDefaultRolesForFeature(feature);
}
void IFeatureEventHandler.Enabling(Feature feature) {