qol: simplify accessors
This commit is contained in:
@@ -236,7 +236,7 @@ namespace Disco.Web.Areas.API.Controllers
|
||||
private void UpdateScope(DocumentTemplatePackage Package, string Scope)
|
||||
{
|
||||
AttachmentTypes scope;
|
||||
if (!Enum.TryParse<AttachmentTypes>(Scope, true, out scope))
|
||||
if (!Enum.TryParse(Scope, true, out scope))
|
||||
throw new ArgumentException("Invalid Scope", nameof(Scope));
|
||||
|
||||
if (Package.Scope != scope)
|
||||
|
||||
Reference in New Issue
Block a user