isn/src/isnd/Helpers/PackageVersionHelpers.cs

15 lines
363 B
C#
Raw Normal View History

2021-09-05 15:44:47 +01:00
using System.Security.Claims;
using isnd.Data;
namespace isnd.Helpers
{
public static class PackageVersionHelpers
{
public static bool IsOwner(this ClaimsPrincipal user, PackageVersion v)
{
var userId = user.FindFirstValue(ClaimTypes.NameIdentifier);
return v.Package.OwnerId == userId;
}
}
}