Tidy: Sort/remove usings, simplify names
This commit is contained in:
@@ -1,10 +1,4 @@
|
||||
using Disco.Services.Users;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Web.Mvc;
|
||||
using System;
|
||||
|
||||
namespace Disco.Services.Authorization
|
||||
{
|
||||
@@ -17,7 +11,7 @@ namespace Disco.Services.Authorization
|
||||
if (AuthorisedClaims == null || AuthorisedClaims.Length == 0)
|
||||
throw new ArgumentNullException("AuthorisedClaims");
|
||||
|
||||
this.authorizedClaims = AuthorisedClaims;
|
||||
authorizedClaims = AuthorisedClaims;
|
||||
}
|
||||
|
||||
public override bool IsAuthorized(System.Web.HttpContextBase httpContext)
|
||||
|
||||
Reference in New Issue
Block a user