diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-10-30 22:00:35 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-10-30 22:00:35 -0700 |
commit | fa0da3ffda98965e984d81564debd8bd4ee26961 (patch) | |
tree | b8774d6114a6c62cb808cd989946ff6da1f9a8da /src/DotNetOpenAuth.OAuth2.AuthorizationServer/DotNetOpenAuth.OAuth2.AuthorizationServer.csproj | |
parent | 07c0de18759d4e290435986ad7efd8cc114439b4 (diff) | |
download | DotNetOpenAuth-fa0da3ffda98965e984d81564debd8bd4ee26961.zip DotNetOpenAuth-fa0da3ffda98965e984d81564debd8bd4ee26961.tar.gz DotNetOpenAuth-fa0da3ffda98965e984d81564debd8bd4ee26961.tar.bz2 |
Authorization servers can override the granted scopes for all grant types.
This change adds the ability for authorization servers to override the granted scopes of client credential and resource owner password grant types.
Fixes #225
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.AuthorizationServer/DotNetOpenAuth.OAuth2.AuthorizationServer.csproj')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.AuthorizationServer/DotNetOpenAuth.OAuth2.AuthorizationServer.csproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/DotNetOpenAuth.OAuth2.AuthorizationServer.csproj b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/DotNetOpenAuth.OAuth2.AuthorizationServer.csproj index bb782f0..73c563b 100644 --- a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/DotNetOpenAuth.OAuth2.AuthorizationServer.csproj +++ b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/DotNetOpenAuth.OAuth2.AuthorizationServer.csproj @@ -27,6 +27,8 @@ <DependentUpon>AuthServerStrings.resx</DependentUpon> </Compile> <Compile Include="OAuth2\AuthServerUtilities.cs" /> + <Compile Include="OAuth2\AutomatedAuthorizationCheckResponse.cs" /> + <Compile Include="OAuth2\AutomatedUserAuthorizationCheckResponse.cs" /> <Compile Include="OAuth2\ChannelElements\AggregatingClientCredentialReader.cs" /> <Compile Include="OAuth2\ChannelElements\ClientCredentialHttpBasicReader.cs" /> <Compile Include="OAuth2\ChannelElements\ClientCredentialMessagePartReader.cs" /> |