Skip to content

Commit

Permalink
Merge pull request #309 from json-api-dotnet/jaredcnance-patch-1
Browse files Browse the repository at this point in the history
make attr constructor public
  • Loading branch information
jaredcnance authored Jun 18, 2018
2 parents 8b0c3fd + 55407f2 commit 8f7f0f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/JsonApiDotNetCore/JsonApiDotNetCore.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>2.3.0</VersionPrefix>
<VersionPrefix>2.3.1</VersionPrefix>
<TargetFrameworks>$(NetStandardVersion)</TargetFrameworks>
<AssemblyName>JsonApiDotNetCore</AssemblyName>
<PackageId>JsonApiDotNetCore</PackageId>
Expand Down
2 changes: 1 addition & 1 deletion src/JsonApiDotNetCore/Models/AttrAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public AttrAttribute(string publicName, bool isImmutable = false, bool isFiltera
IsSortable = isSortable;
}

internal AttrAttribute(string publicName, string internalName, bool isImmutable = false)
public AttrAttribute(string publicName, string internalName, bool isImmutable = false)
{
PublicAttributeName = publicName;
InternalAttributeName = internalName;
Expand Down

0 comments on commit 8f7f0f7

Please sign in to comment.