kristofferahl / FluentSecurity

Fluent Security configuration for ASP.NET MVC
MIT License
163 stars 47 forks source link

Changed GetActionName method to use the static ActionNameAttributeType #53

Closed chandu closed 11 years ago

chandu commented 12 years ago

Changed:

var actionNameAttribute = (ActionNameAttribute) Attribute.GetCustomAttribute(actionMethod, typeof (ActionNameAttribute));

to

var actionNameAttribute = (ActionNameAttribute) Attribute.GetCustomAttribute(actionMethod, ActionNameAttributeType);

of FluentSecurity.Extensions.cs

kristofferahl commented 11 years ago

Will apply this next time I sit down to do some work. Thanks!

kristofferahl commented 11 years ago

Hi @Chandu, just noticed the pull-request was sent to master instead of develop. Can you please change it to develop so I can merge it?

chandu commented 11 years ago

Submitted another pull request to develop branch. Closing this one